Commit 49aca6e9 by andrewlewis Committed by Oliver Woodman

Fix typo in variable name

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=172724250
parent daf9c8d1
...@@ -524,10 +524,10 @@ public class DashManifestParser extends DefaultHandler ...@@ -524,10 +524,10 @@ public class DashManifestParser extends DefaultHandler
} }
format = format.copyWithDrmInitData(drmInitData); format = format.copyWithDrmInitData(drmInitData);
} }
ArrayList<Descriptor> inbandEventStremas = representationInfo.inbandEventStreams; ArrayList<Descriptor> inbandEventStreams = representationInfo.inbandEventStreams;
inbandEventStremas.addAll(extraInbandEventStreams); inbandEventStreams.addAll(extraInbandEventStreams);
return Representation.newInstance(contentId, Representation.REVISION_ID_DEFAULT, format, return Representation.newInstance(contentId, Representation.REVISION_ID_DEFAULT, format,
representationInfo.baseUrl, representationInfo.segmentBase, inbandEventStremas); representationInfo.baseUrl, representationInfo.segmentBase, inbandEventStreams);
} }
// SegmentBase, SegmentList and SegmentTemplate parsing. // SegmentBase, SegmentList and SegmentTemplate parsing.
......
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