Skip to content

Commit

Permalink
fix(HLS): Fix mimetype checking when using SUPPLEMENTAL-CODECS (#6597)
Browse files Browse the repository at this point in the history
Fixes #6586
  • Loading branch information
mgny authored May 13, 2024
1 parent e480bf0 commit 5a90547
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Martin Stark <[email protected]>
Mariano Facundo Scigliano <[email protected]>
Matthias Van Parijs <[email protected]>
Mattias Wadman <[email protected]>
Mehmet Guney <[email protected]>
Mirego <*@mirego.com>
Mohamed Rashid <[email protected]>
Morten Hansen <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Matias Russitto <[email protected]>
Mathieu Côté <[email protected]>
Matthias Van Parijs <[email protected]>
Mattias Wadman <[email protected]>
Mehmet Guney <[email protected]>
Michelle Zhuo <[email protected]>
Miloš Rašić <[email protected]>
Mohamed Rashid <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion lib/media/segment_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ shaka.media.SegmentUtils = class {
if (!dolbyVision) {
return codecs;
}
const type = `video/mp4; codecs="${dolbyVision}"'`;
const type = `video/mp4; codecs="${dolbyVision}"`;
if (shaka.media.Capabilities.isTypeSupported(type)) {
return [dolbyVision];
}
Expand Down

0 comments on commit 5a90547

Please sign in to comment.