Skip to content

Commit

Permalink
fix(DASH): Firefox multi-period/multi-codec bug (#6691)
Browse files Browse the repository at this point in the history
Fixes #6690
  • Loading branch information
rogerpales authored and avelad committed May 29, 2024
1 parent 01ad037 commit 18eeef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ Prakash Duggaraju <[email protected]>
Robert Colantuoni <[email protected]>
Robert Galluccio <[email protected]>
Rodolphe Breton <[email protected]>
Roger Pales <[email protected]>
Rohit Makasana <[email protected]>
Rohan Gupta <[email protected]>
Roi Lipman <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion lib/util/stream_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ shaka.util.StreamUtils = class {
if (!a) {
return b;
} else {
const res = shaka.util.ObjectUtils.cloneObject(a);
const res = shaka.util.ObjectUtils.shallowCloneObject(a);
res.supported = a.supported && b.supported;
res.powerEfficient = a.powerEfficient && b.powerEfficient;
res.smooth = a.smooth && b.smooth;
Expand Down

0 comments on commit 18eeef1

Please sign in to comment.