mp4box
Version:
JavaScript version of GPAC's MP4Box tool
11 lines (9 loc) • 300 B
JavaScript
BoxParser.createFullBoxCtor("pdin", "ProgressiveDownloadInfoBox", function(stream) {
var count = (this.size - this.hdr_size)/8;
this.rate = [];
this.initial_delay = [];
for (var i = 0; i < count; i++) {
this.rate[i] = stream.readUint32();
this.initial_delay[i] = stream.readUint32();
}
});