Commit f1ce311c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

mp4: kill warning about sign

parent e480841e
...@@ -708,7 +708,7 @@ static int Demux( demux_t *p_demux ) ...@@ -708,7 +708,7 @@ static int Demux( demux_t *p_demux )
if( tk->fmt.i_codec == VLC_FOURCC( 's', 'u', 'b', 't' ) && if( tk->fmt.i_codec == VLC_FOURCC( 's', 'u', 'b', 't' ) &&
p_block->i_buffer >= 2 ) p_block->i_buffer >= 2 )
{ {
uint16_t i_size = GetWBE( p_block->p_buffer ); size_t i_size = GetWBE( p_block->p_buffer );
if( i_size + 2 <= p_block->i_buffer ) if( i_size + 2 <= 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