Home
last modified time | relevance | path

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

/external/exoplayer/tree/library/extractor/src/main/java/com/google/android/exoplayer2/extractor/mp4/
DAtomParsers.java395 long editStartTime = track.editListMediaTimes[0]; in parseStbl() local
396 long editEndTime = editStartTime + Util.scaleLargeTimestamp(track.editListDurations[0], in parseStbl()
398 if (canApplyEditWithGaplessInfo(timestamps, duration, editStartTime, editEndTime)) { in parseStbl()
400 long encoderDelay = Util.scaleLargeTimestamp(editStartTime - timestamps[0], in parseStbl()
422 long editStartTime = track.editListMediaTimes[0]; in parseStbl() local
426 timestamps[i] - editStartTime, C.MICROS_PER_SECOND, track.timescale); in parseStbl()
429 Util.scaleLargeTimestamp(duration - editStartTime, C.MICROS_PER_SECOND, track.timescale); in parseStbl()
1466 long[] timestamps, long duration, long editStartTime, long editEndTime) { in canApplyEditWithGaplessInfo() argument
1471 return timestamps[0] <= editStartTime in canApplyEditWithGaplessInfo()
1472 && editStartTime < timestamps[latestDelayIndex] in canApplyEditWithGaplessInfo()