Commit 0e8e2176 authored by Rafaël Carré's avatar Rafaël Carré

TS mux: group codecs using the same IDs

parent 5740f2d1
...@@ -950,14 +950,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -950,14 +950,11 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
p_stream->i_stream_type = 0x81; p_stream->i_stream_type = 0x81;
p_stream->i_stream_id = 0xbd; p_stream->i_stream_id = 0xbd;
break; break;
case VLC_CODEC_EAC3:
p_stream->i_stream_type = 0x06;
p_stream->i_stream_id = 0xbd;
break;
case VLC_CODEC_DVD_LPCM: case VLC_CODEC_DVD_LPCM:
p_stream->i_stream_type = 0x83; p_stream->i_stream_type = 0x83;
p_stream->i_stream_id = 0xbd; p_stream->i_stream_id = 0xbd;
break; break;
case VLC_CODEC_EAC3:
case VLC_CODEC_DTS: case VLC_CODEC_DTS:
p_stream->i_stream_type = 0x06; p_stream->i_stream_type = 0x06;
p_stream->i_stream_id = 0xbd; p_stream->i_stream_id = 0xbd;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment