Commit c6092bbb by tonihei Committed by Oliver Woodman

Fix typo.

PiperOrigin-RevId: 229365333
parent 36883e62
...@@ -457,10 +457,10 @@ public class DefaultDashChunkSource implements DashChunkSource { ...@@ -457,10 +457,10 @@ public class DefaultDashChunkSource implements DashChunkSource {
} }
private ArrayList<Representation> getRepresentations() { private ArrayList<Representation> getRepresentations() {
List<AdaptationSet> manifestAdapationSets = manifest.getPeriod(periodIndex).adaptationSets; List<AdaptationSet> manifestAdaptationSets = manifest.getPeriod(periodIndex).adaptationSets;
ArrayList<Representation> representations = new ArrayList<>(); ArrayList<Representation> representations = new ArrayList<>();
for (int adaptationSetIndex : adaptationSetIndices) { for (int adaptationSetIndex : adaptationSetIndices) {
representations.addAll(manifestAdapationSets.get(adaptationSetIndex).representations); representations.addAll(manifestAdaptationSets.get(adaptationSetIndex).representations);
} }
return representations; return representations;
} }
......
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