Commit 2a37ac04 authored by Michael Niedermayer's avatar Michael Niedermayer

flashsv2enc: fix division by zero

Fixes other half of Ticket1105

Found-by: ami_stuff
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 40d8c89c
......@@ -192,6 +192,11 @@ static av_cold int flashsv2_encode_init(AVCodecContext * avctx)
"Input dimensions too large, input must be max 4096x4096 !\n");
return -1;
}
if ((avctx->width < 16) || (avctx->height < 16)) {
av_log(avctx, AV_LOG_ERROR,
"Input dimensions too small, input must be max 16x16 !\n");
return -1;
}
if (av_image_check_size(avctx->width, avctx->height, 0, avctx) < 0)
return -1;
......
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