Skip to content

Commit

Permalink
fix: Fix DRM workaround for Tizen and Xbox with hvc1/hev1 boxes (#4743)
Browse files Browse the repository at this point in the history
fixes #4742
  • Loading branch information
ricardo-a-alves-alb authored and joeyparrish committed Dec 8, 2022
1 parent a481596 commit b56bd28
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/media/content_workarounds.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,18 @@ shaka.media.ContentWorkarounds = class {
})
.fullBox('encv', onEncryptionMetadataBox)
.fullBox('enca', onEncryptionMetadataBox)
.fullBox('hev1', (box) => {
boxesToModify.push({
box,
newType: ContentWorkarounds.BOX_TYPE_ENCV_,
});
})
.fullBox('hvc1', (box) => {
boxesToModify.push({
box,
newType: ContentWorkarounds.BOX_TYPE_ENCV_,
});
})
.fullBox('avc1', (box) => {
boxesToModify.push({
box,
Expand Down

0 comments on commit b56bd28

Please sign in to comment.