Skip to content

Commit

Permalink
Update bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
bbert committed Jan 3, 2023
1 parent ee70408 commit 659a0fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions dist/iso_boxer.js
Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,14 @@ ISOBox.prototype._boxProcessors['payl'] = function() {
this._procField('cue_text', 'utf8');
};

// ISO/IEC 14496-12:2012 - 8.16.5 Producer Reference Time
ISOBox.prototype._boxProcessors['prft'] = function() {
this._procFullBox();
this._procField('reference_track_ID', 'uint', 32);
this._procField('ntp_timestamp', 'uint', 64);
this._procField('media_time', 'uint', (this.version == 1) ? 64 : 32);
};

//ISO/IEC 23001-7:2011 - 8.1 Protection System Specific Header Box
ISOBox.prototype._boxProcessors['pssh'] = function() {
this._procFullBox();
Expand Down
Loading

0 comments on commit 659a0fd

Please sign in to comment.