Commit 1cd0a551 authored by Laurent Aimar's avatar Laurent Aimar Committed by Janne Grunau

motionpixels: Prevent calling init_vlc() with invalid parameters

Signed-off-by: 's avatarJanne Grunau <janne-libav@jannau.net>
parent 5f05cf4e
......@@ -281,6 +281,8 @@ static int mp_decode_frame(AVCodecContext *avctx,
if (sz == 0)
goto end;
if (mp->max_codes_bits <= 0)
goto end;
if (init_vlc(&mp->vlc, mp->max_codes_bits, mp->codes_count, &mp->codes[0].size, sizeof(HuffCode), 1, &mp->codes[0].code, sizeof(HuffCode), 4, 0))
goto end;
mp_decode_frame_helper(mp, &gb);
......
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