-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Change so that default presentation delay for DASH is configurable #1234 #1235
Change so that default presentation delay for DASH is configurable #1234 #1235
Conversation
293a14b
to
3a7ac65
Compare
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 great otherwise! I'll go ahead and run the tests in the build bot.
externs/shaka/player.js
Outdated
@@ -508,6 +509,9 @@ shakaExtern.DrmConfiguration; | |||
* existing contents. If false, xlink-related errors will be propagated | |||
* to the application and will result in a playback failure. Defaults to | |||
* false if not provided. | |||
* @property {number} defaultPresentationDelay | |||
* A default presentationDelay if suggestedPresentationDelay is missing | |||
* in the MPEG DASH manifest, has to be biggar than minBufferTime * 1.5. |
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.
typo: "biggar" should be "bigger"
Test Failure:
|
It looks like jsdoc doesn't like your trailing comma in the doc string. I'll file a bug to make jsdoc more flexible, as trailing commas are recommended in other contexts. |
The DEFAULT_SUGGESTED_PRESENTATION_DELAY_ in DashParser is useful to have configurable when the stream provider isn't able to add `suggestedPresentationDelay` in the manifest
3a7ac65
to
6f4f921
Compare
@joeyparrish |
Yes |
All tests passed! |
Okay, everything looks good! Thanks! |
Cherry-picked for v2.3.2. Just barely missed the cut-off for v2.3.1. Thanks again for the contribution! |
The DEFAULT_SUGGESTED_PRESENTATION_DELAY_ in DashParser is useful to have configurable
when the stream provider isn't able to add
suggestedPresentationDelay
in the manifest.Fixes #1234