mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/mss2: use < 0 instead of != 0 to check for error of vlc initialization
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b0322e4a9e
commit
8ea9334b31
@ -317,7 +317,7 @@ static int decode_rle(GetBitContext *gb, uint8_t *pal_dst, int pal_stride,
|
||||
if (next_code != 1 << current_length)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
if (i = init_vlc(&vlc, 9, alphabet_size, bits, 1, 1, codes, 4, 4, 0))
|
||||
if ((i = init_vlc(&vlc, 9, alphabet_size, bits, 1, 1, codes, 4, 4, 0)) < 0)
|
||||
return i;
|
||||
|
||||
/* frame decode */
|
||||
|
Loading…
Reference in New Issue
Block a user