Commit 72a278f6 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: ts: use dts instead of pts for no-trust-pcr

still wrong though, not stricty increasing with streams > 1 :/
parent 9cbad062
......@@ -1916,9 +1916,9 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid, block_t *p_pes )
block_Duplicate( p_block ) );
}
if (!p_sys->b_trust_pcr && p_block->i_pts > VLC_TS_INVALID )
if (!p_sys->b_trust_pcr && p_block->i_dts > VLC_TS_INVALID )
es_out_Control( p_demux->out, ES_OUT_SET_GROUP_PCR,
pid->i_owner_number, p_block->i_pts);
pid->i_owner_number, p_block->i_dts);
es_out_Send( p_demux->out, pid->es->id, p_block );
......
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