-
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
specific rebufferingGoal override manifest one #1547 #1581
Changes from 1 commit
74c4060
0285c45
3be8be2
f483d59
4f4436d
7091f3f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,6 +101,7 @@ shaka.util.PlayerConfiguration = class { | |
ignoreDrmInfo: false, | ||
xlinkFailGracefully: false, | ||
defaultPresentationDelay: 10, | ||
ignoreMinBufferTime: false, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should also be added to externs/shaka/player.js, in the This will probably produce a few build errors, as the DASH config object in several of our tests will need to be updated to match the updated type. Be sure to run After that, please add a new test in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i'm not yet sure on how to write a test properly but will check it later on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would suggest looking at the very last test in that file ('exposes Representation IDs') as a template. The important parts of the test are:
Does that help? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. definitly help, thanks |
||
}, | ||
}; | ||
|
||
|
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.
parseAttr()
can returnnull
if there's no such attribute, so please add|| 0
to the end of this statement.