From: Michael Niedermayer Date: Fri, 20 Apr 2012 15:42:18 +0000 (+0200) Subject: avsdec: Set dimensions instead of relying on the demuxer. X-Git-Tag: n0.11~643 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/1df49142bab1b7bccd11392aa9e819e297d21a6e avsdec: Set dimensions instead of relying on the demuxer. This fixes out of array writes. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer --- diff --git a/libavcodec/avs.c b/libavcodec/avs.c index 17d4e10..801e1bc 100644 --- a/libavcodec/avs.c +++ b/libavcodec/avs.c @@ -162,6 +162,7 @@ static av_cold int avs_decode_init(AVCodecContext * avctx) AvsContext *const avs = avctx->priv_data; avctx->pix_fmt = PIX_FMT_PAL8; avcodec_get_frame_defaults(&avs->picture); + avcodec_set_dimensions(avctx, 318, 198); return 0; }