Commit 703792c7 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Simplify debug

(cherry picked from commit 5a9a53f7)
parent 0f121bea
......@@ -1666,11 +1666,13 @@ static void parse_master(demux_t *p_demux)
p_sys->b_have_master = true;
i_pts_secs = p_sys->l_first_ty_pts / 1000000000;
msg_Dbg( p_demux, "first TY pts in master is %02d:%02d:%02d",
(int)(i_pts_secs / 3600), (int)((i_pts_secs / 60) % 60), (int)(i_pts_secs % 60) );
msg_Dbg( p_demux,
"first TY pts in master is %02"PRId64":%02"PRId64":%02"PRId64,
i_pts_secs / 3600, (i_pts_secs / 60) % 60, i_pts_secs % 60 );
i_pts_secs = p_sys->l_final_ty_pts / 1000000000;
msg_Dbg( p_demux, "final TY pts in master is %02d:%02d:%02d",
(int)(i_pts_secs / 3600), (int)((i_pts_secs / 60) % 60), (int)(i_pts_secs % 60) );
msg_Dbg( p_demux,
"final TY pts in master is %02"PRId64":%02"PRId64":%02"PRId64,
i_pts_secs / 3600, (i_pts_secs / 60) % 60, i_pts_secs % 60 );
/* seek past this chunk */
stream_Seek(p_demux->s, i_save_pos + CHUNK_SIZE);
......
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