Skip to content

Commit

Permalink
Merge pull request #351 from dukesook/BUGFIX_iloc_version
Browse files Browse the repository at this point in the history
iloc version bug
  • Loading branch information
cconcolato committed Sep 3, 2023
2 parents ed7f348 + 8a79d33 commit a768453
Showing 1 changed file with 1 addition and 1 deletion.
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 a768453

Please sign in to comment.