Commit 29201bc2 authored by Clément Stenac's avatar Clément Stenac

Better if we don't break teletext

parent 329d95b7
...@@ -1073,10 +1073,9 @@ static int Mux( sout_mux_t *p_mux ) ...@@ -1073,10 +1073,9 @@ static int Mux( sout_mux_t *p_mux )
block_t *p_next = block_FifoShow( p_input->p_fifo ); block_t *p_next = block_FifoShow( p_input->p_fifo );
p_data->i_length = p_next->i_dts - p_data->i_dts; p_data->i_length = p_next->i_dts - p_data->i_dts;
} }
#if 0 else if( p_input->p_fmt->i_codec !=
else VLC_FOURCC('s', 'u', 'b', 't' ) )
p_data->i_length = 1000; p_data->i_length = 1000;
#endif
if( ( p_pcr_stream->i_pes_dts > 0 && if( ( p_pcr_stream->i_pes_dts > 0 &&
p_data->i_dts - 10000000 > p_pcr_stream->i_pes_dts + p_data->i_dts - 10000000 > p_pcr_stream->i_pes_dts +
......
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