Skip to content

Commit

Permalink
Remove final flag from ADTS demuxer data event
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Nov 19, 2012
1 parent 519cd90 commit 8b7d041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adts_demuxer.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var ADTSDemuxer = AV.Demuxer.extend(function() {

while (this.stream.available(1)) {
var buffer = this.stream.readSingleBuffer(this.stream.remainingBytes());
this.emit('data', buffer, this.stream.remainingBytes() === 0);
this.emit('data', buffer);
}
};
});

0 comments on commit 8b7d041

Please sign in to comment.