Commit 82c6d789 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

avcodec: fix warning

parent ddf080f5
...@@ -608,7 +608,7 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block ) ...@@ -608,7 +608,7 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
block_Release( p_block ); block_Release( p_block );
return NULL; return NULL;
} }
else if( i_used > p_block->i_buffer || else if( (unsigned)i_used > p_block->i_buffer ||
p_context->thread_count > 1 ) p_context->thread_count > 1 )
{ {
i_used = p_block->i_buffer; i_used = p_block->i_buffer;
......
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