mirror of
https://github.com/samsonjs/media.git
synced 2026-03-29 10:05:48 +00:00
Fix ArrayIndexOutOfBoundsException in DashMediaPeriod
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=158269662
This commit is contained in:
parent
5908d2d7e2
commit
1b06ce7407
1 changed files with 1 additions and 1 deletions
|
|
@ -273,7 +273,7 @@ import java.util.List;
|
|||
AdaptationSet firstAdaptationSet = adaptationSets.get(adaptationSetIndices[0]);
|
||||
int primaryTrackGroupIndex = trackGroupCount;
|
||||
boolean hasEventMessageTrack = primaryGroupHasEventMessageTrackFlags[i];
|
||||
boolean hasCea608Track = primaryGroupHasEventMessageTrackFlags[i];
|
||||
boolean hasCea608Track = primaryGroupHasCea608TrackFlags[i];
|
||||
|
||||
trackGroups[trackGroupCount] = new TrackGroup(formats);
|
||||
trackGroupInfos[trackGroupCount++] = new TrackGroupInfo(firstAdaptationSet.type,
|
||||
|
|
|
|||
Loading…
Reference in a new issue