Skip to content

Commit

Permalink
Deploying to gh-pages from @ 804d4b5 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
DenizUgur committed Oct 29, 2024
1 parent b5d91fe commit e15adff
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 @@ -3909,10 +3909,10 @@ BoxParser.createFullBoxCtor("saiz", function(stream) {
this.aux_info_type_parameter = stream.readUint32();
}
this.default_sample_info_size = stream.readUint8();
var count = stream.readUint32();
this.sample_count = stream.readUint32();
this.sample_info_size = [];
if (this.default_sample_info_size === 0) {
for (var i = 0; i < count; i++) {
for (var i = 0; i < this.sample_count; i++) {
this.sample_info_size[i] = stream.readUint8();
}
}
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/saiz.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ BoxParser.createFullBoxCtor("saiz", function(stream) {
this.aux_info_type_parameter = stream.readUint32();
}
this.default_sample_info_size = stream.readUint8();
var count = stream.readUint32();
this.sample_count = stream.readUint32();
this.sample_info_size = [];
if (this.default_sample_info_size === 0) {
for (var i = 0; i < count; i++) {
for (var i = 0; i < this.sample_count; i++) {
this.sample_info_size[i] = stream.readUint8();
}
}
Expand Down

0 comments on commit e15adff

Please sign in to comment.