Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | /**
* passthrough remuxer
*/
import Event from '../events';
class PassThroughRemuxer {
constructor (observer) {
this.observer = observer;
}
destroy () {
}
resetTimeStamp () {
}
resetInitSegment () {
}
remux (audioTrack, videoTrack, id3Track, textTrack, timeOffset, contiguous, accurateTimeOffset, rawData) {
let observer = this.observer;
let streamType = '';
if (audioTrack)
streamType += 'audio';
if (videoTrack)
streamType += 'video';
observer.trigger(Event.FRAG_PARSING_DATA, {
data1: rawData,
startPTS: timeOffset,
startDTS: timeOffset,
type: streamType,
hasAudio: !!audioTrack,
hasVideo: !!videoTrack,
nb: 1,
dropped: 0
});
// notify end of parsing
observer.trigger(Event.FRAG_PARSED);
}
}
export default PassThroughRemuxer;
|