From: Rafaël Carré Date: Tue, 8 Dec 2009 11:04:03 +0000 (+0100) Subject: asf: fix VLC_TS_INVALID comparison spotted by nefrir X-Git-Tag: 1.1.0-ff~2076 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ced2f640a37a71ecceddb9bbf44885e4aef01f12;p=vlc asf: fix VLC_TS_INVALID comparison spotted by nefrir --- diff --git a/modules/mux/asf.c b/modules/mux/asf.c index a50e3cfb72..323bc07e64 100644 --- a/modules/mux/asf.c +++ b/modules/mux/asf.c @@ -706,7 +706,7 @@ static int Mux( sout_mux_t *p_mux ) return VLC_SUCCESS; } - if( p_sys->i_dts_first < VLC_TS_INVALID ) + if( p_sys->i_dts_first <= VLC_TS_INVALID ) { p_sys->i_dts_first = i_dts; }