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
Format format = buildFormat(id, mimeType, width, height, frameRate, audioChannels,
audioSamplingRate, bandwidth, adaptationSetLanguage, adaptationSetAccessibilityChannel,
codecs);
segmentBase = segmentBase != null ? segmentBase : new SingleSegmentBase(baseUrl);
segmentBase = segmentBase != null ? segmentBase : new SingleSegmentBase();
return new RepresentationInfo(format, baseUrl, segmentBase, drmSchemeDatas);
}
......
......@@ -84,7 +84,7 @@ public abstract class SegmentBase {
this.indexLength = indexLength;
}
public SingleSegmentBase(String uri) {
public SingleSegmentBase() {
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