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 and avelad committed May 13, 2024
1 parent a8e455b commit 8763ea2
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 <martin.stark@eyevinn.se>
Mariano Facundo Scigliano <mfacundo94@gmail.com>
Matthias Van Parijs <matvp91@gmail.com>
Mattias Wadman <mattias.wadman@gmail.com>
Mehmet Guney <mguney05@gmail.com>
Mirego <*@mirego.com>
Mohamed Rashid <ge_rashid@hotmail.co.uk>
Morten Hansen <mimo@mimo-design.com>
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 <russitto@gmail.com>
Mathieu Côté <mcote@mirego.com>
Matthias Van Parijs <matvp91@gmail.com>
Mattias Wadman <mattias.wadman@gmail.com>
Mehmet Guney <mguney05@gmail.com>
Michelle Zhuo <michellezhuo@google.com>
Miloš Rašić <milos.rasic@gmail.com>
Mohamed Rashid <ge_rashid@hotmail.co.uk>
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 @@ -470,7 +470,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 8763ea2

Please sign in to comment.