Commit ca30e8da authored by Laurent Aimar's avatar Laurent Aimar

* ts.c: do not use packetizer for ms-codec streams.

parent 15a9e81c
...@@ -1745,6 +1745,9 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt ) ...@@ -1745,6 +1745,9 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
{ {
msg_Warn( p_demux, "private MSCODEC (vlc) without bih private descriptor" ); msg_Warn( p_demux, "private MSCODEC (vlc) without bih private descriptor" );
} }
/* For such stream we will gather them ourself and don't launch a packetize,
* Yes it's ugly but it's the only way to make DIV3 working */
pid->es->fmt.b_packetized = VLC_TRUE;
} }
if( pid->es->fmt.i_cat == AUDIO_ES || pid->es->fmt.i_cat == SPU_ES ) if( pid->es->fmt.i_cat == AUDIO_ES || pid->es->fmt.i_cat == SPU_ES )
......
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