Skip to content

Commit

Permalink
Deploying to gh-pages from @ bfa8d8b 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
DenizUgur committed Jan 27, 2025
1 parent 7299c09 commit d05550b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/mp4box.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -4973,7 +4973,7 @@ BoxParser.createFullBoxCtor("udes", function(stream) {
// file:src/parsing/uncC.js
BoxParser.createFullBoxCtor("uncC", function(stream) {
var i;
this.profile = stream.readUint32();
this.profile = stream.readString(4);
if (this.version == 1) {
// Nothing - just the profile
} else if (this.version == 0) {
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.

2 changes: 1 addition & 1 deletion src/parsing/uncC.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BoxParser.createFullBoxCtor("uncC", function(stream) {
var i;
this.profile = stream.readUint32();
this.profile = stream.readString(4);
if (this.version == 1) {
// Nothing - just the profile
} else if (this.version == 0) {
Expand Down

0 comments on commit d05550b

Please sign in to comment.