-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: drop support for the partial muxer #1119
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1119 +/- ##
==========================================
- Coverage 86.48% 86.16% -0.33%
==========================================
Files 39 39
Lines 9637 9252 -385
Branches 2182 2114 -68
==========================================
- Hits 8335 7972 -363
+ Misses 1302 1280 -22
Continue to review full report at Codecov.
|
// if this is a partial transmux, the end of the timeline has not yet been reached | ||
// until the last part of the segment is processed (at which point isPartial will | ||
// be false) | ||
isEndOfTimeline: isEndOfTimeline && !isPartial, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we still need isEndOfTimeline
for #1058
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, this was removed in error.
src/transmuxer-worker.js
Outdated
} else { | ||
wireFullTransmuxerEvents(this.self, this.transmuxer); | ||
} | ||
this.transmuxer = new FullMux(this.options); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might be worth just calling it Transmuxer
now.
src/transmuxer-worker.js
Outdated
|
||
wireFullTransmuxerEvents(this.self, this.transmuxer); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for rename.
Co-authored-by: Garrett Singer <[email protected]>
We plan to merge the partial muxer code into the non-partial muxer in mux.js, so we are removing the partial muxer option.