Commit 1d31c009 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

quicktime decoder: fix a cast warning

parent 08a33c8d
...@@ -911,7 +911,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block ) ...@@ -911,7 +911,7 @@ static picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
if( p_sys->i_late > 10 ) if( p_sys->i_late > 10 )
{ {
msg_Dbg( p_dec, "late buffer dropped (%i)", i_pts ); msg_Dbg( p_dec, "late buffer dropped (%"PRId64")", i_pts );
block_Release( p_block ); block_Release( p_block );
return NULL; return NULL;
} }
......
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