Skip to content

Commit

Permalink
Deploying to gh-pages from @ 2c15bfd 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouqueau committed Oct 6, 2024
1 parent 08ffdb0 commit b5d91fe
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dist/mp4box.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -5742,8 +5742,8 @@ BoxParser.hvcCBox.prototype.write = function(stream) {
this.writeHeader(stream);

stream.writeUint8(this.configurationVersion);
stream.writeUint8(this.general_profile_space << 6 +
this.general_tier_flag << 5 +
stream.writeUint8((this.general_profile_space << 6) +
(this.general_tier_flag << 5) +
this.general_profile_idc);
stream.writeUint32(this.general_profile_compatibility);
stream.writeUint8Array(this.general_constraint_indicator);
Expand Down
4 changes: 2 additions & 2 deletions dist/mp4box.all.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mp4box.all.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mp4box.simple.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/writing/hvcC.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ BoxParser.hvcCBox.prototype.write = function(stream) {
this.writeHeader(stream);

stream.writeUint8(this.configurationVersion);
stream.writeUint8(this.general_profile_space << 6 +
this.general_tier_flag << 5 +
stream.writeUint8((this.general_profile_space << 6) +
(this.general_tier_flag << 5) +
this.general_profile_idc);
stream.writeUint32(this.general_profile_compatibility);
stream.writeUint8Array(this.general_constraint_indicator);
Expand Down

0 comments on commit b5d91fe

Please sign in to comment.