Commit de635911 authored by Laurent Aimar's avatar Laurent Aimar

Fixed support for non dated teletext.

parent 6dafd7ff
...@@ -1518,7 +1518,7 @@ static void DecoderPlaySpu( decoder_t *p_dec, subpicture_t *p_subpic, ...@@ -1518,7 +1518,7 @@ static void DecoderPlaySpu( decoder_t *p_dec, subpicture_t *p_subpic,
vout_thread_t *p_vout = p_owner->p_spu_vout; vout_thread_t *p_vout = p_owner->p_spu_vout;
/* */ /* */
if( p_subpic->i_start <= VLC_TS_INVALID ) if( p_subpic->i_start <= VLC_TS_INVALID && !b_telx )
{ {
msg_Warn( p_dec, "non-dated spu buffer received" ); msg_Warn( p_dec, "non-dated spu buffer received" );
subpicture_Delete( p_subpic ); subpicture_Delete( p_subpic );
......
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