mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/ansi: Check dimensions
Fixes: 1.avi Found-by: 连一汉 <lianyihan@360.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
99b823f0a1
commit
69449da436
|
@ -94,6 +94,9 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
||||||
int ret = ff_set_dimensions(avctx, 80 << 3, 25 << 4);
|
int ret = ff_set_dimensions(avctx, 80 << 3, 25 << 4);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
} else if (avctx->width % FONT_WIDTH || avctx->height % s->font_height) {
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Invalid dimensions %d %d\n", avctx->width, avctx->height);
|
||||||
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue