Commit a3bdf53b authored by Francois Cartegnie's avatar Francois Cartegnie

demux: asf: use VLC_TS_0 in debug

parent dc44ab58
......@@ -242,9 +242,9 @@ static int Demux( demux_t *p_demux )
if( p_sys->i_time >= 0 )
{
#ifdef ASF_DEBUG
msg_Dbg( p_demux, "Setting PCR to %"PRId64, p_sys->i_time );
msg_Dbg( p_demux, "Demux Loop Setting PCR to %"PRId64, VLC_TS_0 + p_sys->i_time );
#endif
es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_time+1 );
es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_time );
}
return 1;
......
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