Commit ced2f640 authored by Rafaël Carré's avatar Rafaël Carré

asf: fix VLC_TS_INVALID comparison spotted by nefrir

parent e3851516
...@@ -706,7 +706,7 @@ static int Mux( sout_mux_t *p_mux ) ...@@ -706,7 +706,7 @@ static int Mux( sout_mux_t *p_mux )
return VLC_SUCCESS; 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; p_sys->i_dts_first = i_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