Skip to content
Snippets Groups Projects
Commit 47c53ad4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

stats: fix dubious cast

parent d9d911df
No related branches found
No related tags found
No related merge requests found
......@@ -152,7 +152,8 @@ static int Demux( demux_t *p_demux )
p_block->i_dts = p_block->i_pts =
date_Increment( &p_sys->pts, kBufferSize );
msg_Dbg( p_demux, "demux got %d ms offset", (int)(mdate() - *(mtime_t *)p_block->p_buffer) / 1000 );
msg_Dbg( p_demux, "demux got %"PRId64" ms offset",
(mdate() - *(mtime_t *)p_block->p_buffer) / 1000 );
//es_out_SetPCR( p_demux->out, p_block->i_pts );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment