Home
last modified time | relevance | path

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

/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
DBufferManager.java509 SampleChunk earliestChunk = null; in maybeEvictChunk() local
518 if (earliestChunk == null in maybeEvictChunk()
519 || chunk.getCreatedTimeMs() < earliestChunk.getCreatedTimeMs()) { in maybeEvictChunk()
521 earliestChunk = chunk; in maybeEvictChunk()
525 if (earliestChunk == null) { in maybeEvictChunk()
528 mPendingDelete.add(earliestChunkId, earliestChunk); in maybeEvictChunk()
529 earliestChunkMap.remove(earliestChunk.getStartPositionUs()); in maybeEvictChunk()
538 earliestChunk.getSize(), in maybeEvictChunk()
540 earliestChunk.getStartPositionUs(), in maybeEvictChunk()
541 CommonUtils.toIsoDateTimeString(earliestChunk.getCreatedTimeMs()))); in maybeEvictChunk()
[all …]