Skip to content

Commit

Permalink
Deploying to gh-pages from @ a8f4cd8 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
cconcolato committed Nov 1, 2023
1 parent d1af83d commit 599b943
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 @@ -2903,11 +2903,11 @@ BoxParser.createFullBoxCtor("cmin", function(stream) {
}
});// file:src/parsing/cmpd.js
BoxParser.createBoxCtor("cmpd", function(stream) {
this.component_count = stream.readUint16();
this.component_count = stream.readUint32();
this.component_types = [];
this.component_type_urls = [];
for (i = 0; i < this.component_count; i++) {
var component_type = stream.readUint32();
var component_type = stream.readUint16();
this.component_types.push(component_type);
if (component_type >= 0x8000) {
this.component_type_urls.push(stream.readCString());
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/parsing/cmpd.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
BoxParser.createBoxCtor("cmpd", function(stream) {
this.component_count = stream.readUint16();
this.component_count = stream.readUint32();
this.component_types = [];
this.component_type_urls = [];
for (i = 0; i < this.component_count; i++) {
var component_type = stream.readUint32();
var component_type = stream.readUint16();
this.component_types.push(component_type);
if (component_type >= 0x8000) {
this.component_type_urls.push(stream.readCString());
Expand Down

0 comments on commit 599b943

Please sign in to comment.