From: Laurent Aimar Date: Fri, 5 Feb 2010 19:42:30 +0000 (+0100) Subject: Fixed support for non dated teletext. X-Git-Tag: 1.1.0-ff~398 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=de635911f15705e638ae7f8920d1b7a13c91defe;p=vlc Fixed support for non dated teletext. --- diff --git a/src/input/decoder.c b/src/input/decoder.c index 5d3a57c3d8..a8bd0e4e28 100644 --- a/src/input/decoder.c +++ b/src/input/decoder.c @@ -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; /* */ - 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" ); subpicture_Delete( p_subpic );