-
Notifications
You must be signed in to change notification settings - Fork 7
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
Split stableBufferTime
into hybridSwitchBufferTime
and stableBufferTime
#76
Conversation
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.
Looks good. Minor comment, but not blocking.
@@ -863,6 +866,7 @@ function Settings() { | |||
bufferTimeAtTopQualityLongForm: 60, | |||
initialBufferLevel: NaN, | |||
stableBufferTime: 12, | |||
hybridSwitchBufferTime: NaN, |
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.
Should this default to 12 given the comment above?
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.
Good spot! Forgot to change the default value to be stableBufferTime
in documentation. Is it clearer with the change?
What?
Split
stableBufferTime
intohybridSwitchBufferTime
andstableBufferTime
so the threshold to switch between BOLA and throughput ABR algorithms (hybridSwitchBufferTime
) can be configured separately fromstableBufferTime
.