mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Remove some debugging lines in AtomParsers
These were accidentally added in 885ddb167e
PiperOrigin-RevId: 565035337
This commit is contained in:
parent
85c944b955
commit
fdfec60f6e
1 changed files with 1 additions and 5 deletions
|
|
@ -617,11 +617,7 @@ import java.util.List;
|
||||||
long durationUs = Util.scaleLargeTimestamp(duration, C.MICROS_PER_SECOND, track.timescale);
|
long durationUs = Util.scaleLargeTimestamp(duration, C.MICROS_PER_SECOND, track.timescale);
|
||||||
|
|
||||||
if (track.editListDurations == null) {
|
if (track.editListDurations == null) {
|
||||||
try {
|
|
||||||
Util.scaleLargeTimestampsInPlace(timestamps, C.MICROS_PER_SECOND, track.timescale);
|
Util.scaleLargeTimestampsInPlace(timestamps, C.MICROS_PER_SECOND, track.timescale);
|
||||||
} catch (ArithmeticException e) {
|
|
||||||
throw new RuntimeException("track.timescale=" + track.timescale, e);
|
|
||||||
}
|
|
||||||
return new TrackSampleTable(
|
return new TrackSampleTable(
|
||||||
track, offsets, sizes, maximumSize, timestamps, flags, durationUs);
|
track, offsets, sizes, maximumSize, timestamps, flags, durationUs);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue