mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-29 14:30:27 +00:00
flashsvenc: fix image sizes below 192x192
Fixes half of Ticket1105 Found-by: ami_stuff Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d04956344d
commit
40d8c89cb6
@ -205,6 +205,11 @@ static av_cold int flashsv2_encode_init(AVCodecContext * avctx)
|
||||
s->block_width = (s->image_width / 12) & ~15;
|
||||
s->block_height = (s->image_height / 12) & ~15;
|
||||
|
||||
if(!s->block_width)
|
||||
s->block_width = 1;
|
||||
if(!s->block_height)
|
||||
s->block_height = 1;
|
||||
|
||||
s->rows = (s->image_height + s->block_height - 1) / s->block_height;
|
||||
s->cols = (s->image_width + s->block_width - 1) / s->block_width;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user