Remove unused parameter

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140847027
This commit is contained in:
eguven 2016-12-02 07:17:29 -08:00 committed by Oliver Woodman
parent 164b406e23
commit 7ea16a6ae2
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}

View file

@ -84,7 +84,7 @@ public abstract class SegmentBase {
this.indexLength = indexLength;
}
public SingleSegmentBase(String uri) {
public SingleSegmentBase() {
this(null, 1, 0, 0, 0);
}