Commit 42b32b9d authored by Jean-Paul Saman's avatar Jean-Paul Saman

src/input/decoder.c: fix compiler warning

parent d78c9308
......@@ -2354,7 +2354,7 @@ static picture_t *vout_new_buffer( decoder_t *p_dec )
if( vlc_fourcc_IsYUV( fmt.i_chroma ) )
{
const vlc_chroma_description_t *dsc = vlc_fourcc_GetChromaDescription( fmt.i_chroma );
for( int i = 0; dsc && i < dsc->plane_count; i++ )
for( unsigned int i = 0; dsc && i < dsc->plane_count; i++ )
{
while( fmt.i_width % dsc->p[i].w.den )
fmt.i_width++;
......
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