Commit 7ea16a6a by eguven Committed by Oliver Woodman

Remove unused parameter

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140847027
parent 164b406e
...@@ -414,7 +414,7 @@ public class DashManifestParser extends DefaultHandler ...@@ -414,7 +414,7 @@ public class DashManifestParser extends DefaultHandler
Format format = buildFormat(id, mimeType, width, height, frameRate, audioChannels, Format format = buildFormat(id, mimeType, width, height, frameRate, audioChannels,
audioSamplingRate, bandwidth, adaptationSetLanguage, adaptationSetAccessibilityChannel, audioSamplingRate, bandwidth, adaptationSetLanguage, adaptationSetAccessibilityChannel,
codecs); codecs);
segmentBase = segmentBase != null ? segmentBase : new SingleSegmentBase(baseUrl); segmentBase = segmentBase != null ? segmentBase : new SingleSegmentBase();
return new RepresentationInfo(format, baseUrl, segmentBase, drmSchemeDatas); return new RepresentationInfo(format, baseUrl, segmentBase, drmSchemeDatas);
} }
......
...@@ -84,7 +84,7 @@ public abstract class SegmentBase { ...@@ -84,7 +84,7 @@ public abstract class SegmentBase {
this.indexLength = indexLength; this.indexLength = indexLength;
} }
public SingleSegmentBase(String uri) { public SingleSegmentBase() {
this(null, 1, 0, 0, 0); this(null, 1, 0, 0, 0);
} }
......
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