Home
last modified time | relevance | path

Searched refs:seekMap (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/mediaparser/src/android/media/mediaparser/cts/
DMockMediaParserOutputConsumer.java79 public void onSeekMapFound(MediaParser.SeekMap seekMap) { in onSeekMapFound() argument
80 mSeekMap = seekMap; in onSeekMapFound()
81 mFakeExtractorOutput.seekMap( in onSeekMapFound()
85 return seekMap.isSeekable(); in onSeekMapFound()
90 long durationUs = seekMap.getDurationMicros(); in onSeekMapFound()
98 return toExoPlayerSeekPoints(seekMap.getSeekPoints(timeUs)); in onSeekMapFound()
DMediaParserTest.java716 MediaParser.SeekMap seekMap = outputConsumer.getSeekMap(); in testAssetExtraction() local
717 assertThat(seekMap).isNotNull(); in testAssetExtraction()
718 if (seekMap.isSeekable()) { in testAssetExtraction()
719 long durationUs = seekMap.getDurationMicros(); in testAssetExtraction()
726 MediaParser.SeekPoint seekPoint = seekMap.getSeekPoints(timeUs).first; in testAssetExtraction()