Remove some debugging lines in AtomParsers

These were accidentally added in 885ddb167e

PiperOrigin-RevId: 565035337
This commit is contained in:
ibaker 2023-09-13 06:44:50 -07:00 committed by Copybara-Service
parent 85c944b955
commit fdfec60f6e

View File

@ -617,11 +617,7 @@ import java.util.List;
long durationUs = Util.scaleLargeTimestamp(duration, C.MICROS_PER_SECOND, track.timescale);
if (track.editListDurations == null) {
try {
Util.scaleLargeTimestampsInPlace(timestamps, C.MICROS_PER_SECOND, track.timescale);
} catch (ArithmeticException e) {
throw new RuntimeException("track.timescale=" + track.timescale, e);
}
Util.scaleLargeTimestampsInPlace(timestamps, C.MICROS_PER_SECOND, track.timescale);
return new TrackSampleTable(
track, offsets, sizes, maximumSize, timestamps, flags, durationUs);
}