Skip to content

Commit

Permalink
Deploying to gh-pages from @ 8f4e892 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
DenizUgur committed Nov 2, 2024
1 parent f0a0ad0 commit e975cd6
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 @@ -2024,11 +2024,11 @@ var MPEG4DescriptorParser = function () {
byteRead = stream.readUint8();
hdrSize++;
while (byteRead & 0x80) {
size = (byteRead & 0x7F)<<7;
size = (size << 7) + (byteRead & 0x7F);
byteRead = stream.readUint8();
hdrSize++;
}
size += byteRead & 0x7F;
size = (size << 7) + (byteRead & 0x7F);
Log.debug("MPEG4DescriptorParser", "Found "+(descTagToName[tag] || "Descriptor "+tag)+", size "+size+" at position "+stream.getPosition());
if (descTagToName[tag]) {
desc = new classes[descTagToName[tag]](size);
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/descriptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ var MPEG4DescriptorParser = function () {
byteRead = stream.readUint8();
hdrSize++;
while (byteRead & 0x80) {
size = (byteRead & 0x7F)<<7;
size = (size << 7) + (byteRead & 0x7F);
byteRead = stream.readUint8();
hdrSize++;
}
size += byteRead & 0x7F;
size = (size << 7) + (byteRead & 0x7F);
Log.debug("MPEG4DescriptorParser", "Found "+(descTagToName[tag] || "Descriptor "+tag)+", size "+size+" at position "+stream.getPosition());
if (descTagToName[tag]) {
desc = new classes[descTagToName[tag]](size);
Expand Down

0 comments on commit e975cd6

Please sign in to comment.