Skip to content

Commit

Permalink
demuxer-remuxer: remove useless assignement
Browse files Browse the repository at this point in the history
  • Loading branch information
mangui committed Feb 15, 2017
1 parent cbdc61f commit 4424587
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/demux/mp4demuxer.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Event from '../events';
this.observer = observer;
this.id = id;
this.remuxerClass = remuxerClass;
this.config = config;
this.remuxer = new this.remuxerClass(observer,id, config, typeSupported);
}

Expand Down
2 changes: 0 additions & 2 deletions src/remux/passthrough-remuxer.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ class PassThroughRemuxer {
constructor(observer,id) {
this.observer = observer;
this.id = id;
this.ISGenerated = false;
}

destroy() {
Expand All @@ -17,7 +16,6 @@ class PassThroughRemuxer {
}

switchLevel() {
this.ISGenerated = false;
}

remux(level,sn,cc,audioTrack,videoTrack,id3Track,textTrack,timeOffset, contiguous,accurateTimeOffset,defaultInitPTS,rawData) {
Expand Down

0 comments on commit 4424587

Please sign in to comment.