diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index 3f31946d66..8cd8d943f9 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -168,6 +168,9 @@ static av_cold int allocate_frame_buffers(Indeo3DecodeContext *ctx, int p, chroma_width, chroma_height; int luma_pitch, chroma_pitch, luma_size, chroma_size; + luma_width = FFALIGN(luma_width , 2); + luma_height = FFALIGN(luma_height, 2); + if (luma_width < 16 || luma_width > 640 || luma_height < 16 || luma_height > 480 || luma_width & 3 || luma_height & 3) {