mirror of
https://github.com/samsonjs/media.git
synced 2026-04-13 12:35:48 +00:00
Remove unused parameter
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=140847027
This commit is contained in:
parent
164b406e23
commit
7ea16a6ae2
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue