From ced2f640a37a71ecceddb9bbf44885e4aef01f12 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Tue, 8 Dec 2009 12:04:03 +0100 Subject: [PATCH] asf: fix VLC_TS_INVALID comparison spotted by nefrir --- modules/mux/asf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2