Commit 9b652ac1 by olly Committed by kim-vde

Fix TrackSampleTable.durationUs to be 0 for sideloaded tracks

PiperOrigin-RevId: 320006659
parent 75eab31d
......@@ -288,7 +288,7 @@ public class FragmentedMp4Extractor implements Extractor {
/* maximumSize= */ 0,
/* timestampsUs= */ new long[0],
/* flags= */ new int[0],
/* durationUs= */ C.TIME_UNSET),
/* durationUs= */ 0),
new DefaultSampleValues(
/* sampleDescriptionIndex= */ 0, /* duration= */ 0, /* size= */ 0, /* flags= */ 0));
trackBundles.put(0, bundle);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment