Commit e364ed3b authored by Francois Cartegnie's avatar Francois Cartegnie

demux: asf: add TS_0 to debug info

parent 2471b26c
...@@ -592,9 +592,9 @@ static void SendPacket(demux_t *p_demux, asf_track_t *tk) ...@@ -592,9 +592,9 @@ static void SendPacket(demux_t *p_demux, asf_track_t *tk)
if( p_sys->i_time < VLC_TS_0 && tk->i_time > VLC_TS_INVALID ) if( p_sys->i_time < VLC_TS_0 && tk->i_time > VLC_TS_INVALID )
{ {
p_sys->i_time = tk->i_time; p_sys->i_time = tk->i_time;
es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_time ); es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_time );
#ifdef ASF_DEBUG #ifdef ASF_DEBUG
msg_Dbg( p_demux, " setting PCR to %"PRId64, p_sys->i_time ); msg_Dbg( p_demux, " setting PCR to %"PRId64, VLC_TS_0 + p_sys->i_time );
#endif #endif
} }
......
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