diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-09-26 20:25:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-09-26 21:42:17 +0200 |
commit | 69449da436169e7facaa6d1f3bcbc41cf6ce2754 (patch) | |
tree | f7bd0e47d7391fea1da057230dbef74b247a46c7 /libavcodec/ansi.c | |
parent | 99b823f0a1be42abc0f3a6a0da946c4464db5fb6 (diff) | |
download | ffmpeg-69449da436169e7facaa6d1f3bcbc41cf6ce2754.tar.gz |
avcodec/ansi: Check dimensions
Fixes: 1.avi
Found-by: 连一汉 <lianyihan@360.cn>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/ansi.c')
-rw-r--r-- | libavcodec/ansi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/ansi.c b/libavcodec/ansi.c index 4808ea7fff..19c88d8d51 100644 --- a/libavcodec/ansi.c +++ b/libavcodec/ansi.c @@ -94,6 +94,9 @@ static av_cold int decode_init(AVCodecContext *avctx) int ret = ff_set_dimensions(avctx, 80 << 3, 25 << 4); if (ret < 0) 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; } |