Commit 7c37dd1e authored by Thomas Guillem's avatar Thomas Guillem

avcodec: fix signed/unsigned comparison warning

parent 24a26f75
......@@ -313,7 +313,7 @@ static block_t *DecodeAudio( decoder_t *p_dec, block_t **pp_block )
}
assert( p_block->i_buffer >= (unsigned)used );
if( used > p_block->i_buffer )
if( (unsigned)used > p_block->i_buffer )
used = p_block->i_buffer;
p_block->p_buffer += used;
......
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