Commit 8babc068 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

mkv: util: Fix C++11 build

parent edf1c760
...@@ -186,7 +186,7 @@ void handle_real_audio(demux_t * p_demux, mkv_track_t * p_tk, block_t * p_blk, m ...@@ -186,7 +186,7 @@ void handle_real_audio(demux_t * p_demux, mkv_track_t * p_tk, block_t * p_blk, m
if ( !( p_blk->i_flags & BLOCK_FLAG_TYPE_I) ) if ( !( p_blk->i_flags & BLOCK_FLAG_TYPE_I) )
{ {
msg_Dbg( p_demux, "discard non-key preroll block in track %d at%"PRId64, msg_Dbg( p_demux, "discard non-key preroll block in track %d at%" PRId64,
p_tk->i_number, i_pts ); p_tk->i_number, i_pts );
return; return;
} }
...@@ -293,7 +293,7 @@ void send_Block( demux_t * p_demux, mkv_track_t * p_tk, block_t * p_block, unsig ...@@ -293,7 +293,7 @@ void send_Block( demux_t * p_demux, mkv_track_t * p_tk, block_t * p_block, unsig
} }
#if 0 #if 0
msg_Dbg( p_demux, "block (track=%d) i_dts: %"PRId64" / i_pts: %"PRId64, p_tk->i_number, p_block->i_dts, p_block->i_pts); msg_Dbg( p_demux, "block (track=%d) i_dts: %" PRId64" / i_pts: %" PRId64, p_tk->i_number, p_block->i_dts, p_block->i_pts);
#endif #endif
es_out_Send( p_demux->out, p_tk->p_es, p_block); es_out_Send( p_demux->out, p_tk->p_es, 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