Home
last modified time | relevance | path

Searched refs:toKeyframe (Results 1 – 15 of 15) sorted by relevance

/external/exoplayer/tree/testutils/src/main/java/com/google/android/exoplayer2/testutil/
DFakeAdaptiveMediaPeriod.java107 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
108 super.discardBuffer(positionUs, toKeyframe); in discardBuffer()
110 sampleStream.discardBuffer(positionUs, toKeyframe); in discardBuffer()
DFakeMediaPeriod.java183 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DMaskingMediaPeriod.java180 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
181 castNonNull(mediaPeriod).discardBuffer(positionUs, toKeyframe); in discardBuffer()
DMergingMediaPeriod.java168 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
170 period.discardBuffer(positionUs, toKeyframe); in discardBuffer()
351 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
352 mediaPeriod.discardBuffer(positionUs - timeOffsetUs, toKeyframe); in discardBuffer()
DSampleQueue.java430 public final void discardTo(long timeUs, boolean toKeyframe, boolean stopAtReadPosition) { in discardTo() argument
432 discardSampleMetadataTo(timeUs, toKeyframe, stopAtReadPosition)); in discardTo()
637 long timeUs, boolean toKeyframe, boolean stopAtReadPosition) { in discardSampleMetadataTo() argument
642 int discardCount = findSampleBefore(relativeFirstIndex, searchLength, timeUs, toKeyframe); in discardSampleMetadataTo()
DMediaPeriod.java151 void discardBuffer(long positionUs, boolean toKeyframe); in discardBuffer() argument
DClippingMediaPeriod.java137 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
138 mediaPeriod.discardBuffer(positionUs, toKeyframe); in discardBuffer()
DSilenceMediaSource.java179 public void discardBuffer(long positionUs, boolean toKeyframe) {} in discardBuffer() argument
DSingleSampleMediaPeriod.java139 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
DProgressiveMediaPeriod.java322 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
330 sampleQueues[i].discardTo(positionUs, toKeyframe, trackEnabledStates[i]); in discardBuffer()
/external/exoplayer/tree/library/smoothstreaming/src/main/java/com/google/android/exoplayer2/source/smoothstreaming/
DSsMediaPeriod.java171 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
173 sampleStream.discardBuffer(positionUs, toKeyframe); in discardBuffer()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/chunk/
DChunkSampleStream.java169 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
174 primarySampleQueue.discardTo(positionUs, toKeyframe, true); in discardBuffer()
179 embeddedSampleQueues[i].discardTo(discardToUs, toKeyframe, embeddedTracksSelected[i]); in discardBuffer()
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/
DHlsMediaPeriod.java343 public void discardBuffer(long positionUs, boolean toKeyframe) {
345 sampleStreamWrapper.discardBuffer(positionUs, toKeyframe);
DHlsSampleStreamWrapper.java445 public void discardBuffer(long positionUs, boolean toKeyframe) {
451 sampleQueues[i].discardTo(positionUs, toKeyframe, sampleQueuesEnabledStates[i]);
/external/exoplayer/tree/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashMediaPeriod.java285 public void discardBuffer(long positionUs, boolean toKeyframe) { in discardBuffer() argument
287 sampleStream.discardBuffer(positionUs, toKeyframe); in discardBuffer()