Skip to content

Commit

Permalink
Deploying to gh-pages from @ a768453 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
cconcolato committed Sep 3, 2023
1 parent cf1a870 commit c888e36
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/mp4box.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -3399,7 +3399,7 @@ BoxParser.createFullBoxCtor("iloc", function(stream) {
if (this.version < 2) {
item.item_ID = stream.readUint16();
} else if (this.version === 2) {
item.item_ID = stream.readUint16();
item.item_ID = stream.readUint32();
} else {
throw "version of iloc box not supported";
}
Expand Down
2 changes: 1 addition & 1 deletion 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 src/parsing/iloc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ BoxParser.createFullBoxCtor("iloc", function(stream) {
if (this.version < 2) {
item.item_ID = stream.readUint16();
} else if (this.version === 2) {
item.item_ID = stream.readUint16();
item.item_ID = stream.readUint32();
} else {
throw "version of iloc box not supported";
}
Expand Down

0 comments on commit c888e36

Please sign in to comment.