Skip to content

Commit

Permalink
Deploying to gh-pages from @ ed7f348 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
cconcolato committed Sep 3, 2023
1 parent 4094088 commit cf1a870
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 4 additions & 1 deletion dist/mp4box.all.js
Original file line number Diff line number Diff line change
Expand Up @@ -2130,6 +2130,8 @@ var MPEG4DescriptorParser = function () {
classes.DecoderConfigDescriptor.prototype.parse = function(stream) {
this.oti = stream.readUint8();
this.streamType = stream.readUint8();
this.upStream = ((this.streamType >> 1) & 1) !== 0;
this.streamType = this.streamType >>> 2;
this.bufferSize = stream.readUint24();
this.maxBitrate = stream.readUint32();
this.avgBitrate = stream.readUint32();
Expand All @@ -2152,7 +2154,8 @@ var MPEG4DescriptorParser = function () {

if (typeof exports !== 'undefined') {
exports.MPEG4DescriptorParser = MPEG4DescriptorParser;
}// file:src/box.js
}
// file:src/box.js
/*
* Copyright (c) 2012-2013. Telecom ParisTech/TSI/MM/GPAC Cyril Concolato
* License: BSD-3-Clause (see LICENSE file)
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: 3 additions & 1 deletion src/descriptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ var MPEG4DescriptorParser = function () {
classes.DecoderConfigDescriptor.prototype.parse = function(stream) {
this.oti = stream.readUint8();
this.streamType = stream.readUint8();
this.upStream = ((this.streamType >> 1) & 1) !== 0;
this.streamType = this.streamType >>> 2;
this.bufferSize = stream.readUint24();
this.maxBitrate = stream.readUint32();
this.avgBitrate = stream.readUint32();
Expand All @@ -160,4 +162,4 @@ var MPEG4DescriptorParser = function () {

if (typeof exports !== 'undefined') {
exports.MPEG4DescriptorParser = MPEG4DescriptorParser;
}
}

0 comments on commit cf1a870

Please sign in to comment.