We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Function _abortBeforeAppend in SourceBufferSink.js is not used. This is a function returning a promise but it is used as if it was a promise here:
_abortBeforeAppend
SourceBufferSink.js
dash.js/src/streaming/SourceBufferSink.js
Line 84 in 176796e
Maybe this function can be safely removed or maybe it causes some bugs that I am not aware of and the mentioned line should be replaced like this:
const promises = []; - promises.push(_abortBeforeAppend); + promises.push(_abortBeforeAppend()); promises.push(updateAppendWindow(mediaInfo.streamInfo)); promises.push(changeType(codec));
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Environment
Function
_abortBeforeAppend
inSourceBufferSink.js
is not used. This is a function returning a promise but it is used as if it was a promise here:dash.js/src/streaming/SourceBufferSink.js
Line 84 in 176796e
Maybe this function can be safely removed or maybe it causes some bugs that I am not aware of and the mentioned line should be replaced like this:
The text was updated successfully, but these errors were encountered: