Skip to content

Commit

Permalink
Fix RemuxerTrackIdConfig as per iso/iec 14496-12 spec
Browse files Browse the repository at this point in the history
  • Loading branch information
dongheunkang committed May 3, 2018
1 parent c8406f2 commit 21751ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/demux/tsdemuxer.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ import { ErrorTypes, ErrorDetails } from '../errors';
// With MSE currently one can only have one track of each, and we are muxing
// whatever video/audio rendition in them.
const RemuxerTrackIdConfig = {
video: 0,
audio: 1,
id3: 2,
text: 3
video: 1,
audio: 2,
id3: 3,
text: 4
};

class TSDemuxer {
Expand Down

0 comments on commit 21751ff

Please sign in to comment.