[FFmpeg-cvslog] avcodec/indeo3: add support for more dimensions
Paul B Mahol
git at videolan.org
Fri Feb 19 22:25:20 EET 2021
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Feb 14 19:14:45 2021 +0100| [59dd70299007677bd1501973f537d54fc52b2746] | committer: Paul B Mahol
avcodec/indeo3: add support for more dimensions
Fixes #6581
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59dd70299007677bd1501973f537d54fc52b2746
---
libavcodec/indeo3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c
index 75113a7541..5257d983c2 100644
--- a/libavcodec/indeo3.c
+++ b/libavcodec/indeo3.c
@@ -171,7 +171,7 @@ static av_cold int allocate_frame_buffers(Indeo3DecodeContext *ctx,
if (luma_width < 16 || luma_width > 640 ||
luma_height < 16 || luma_height > 480 ||
- luma_width & 3 || luma_height & 3) {
+ luma_width & 1 || luma_height & 1) {
av_log(avctx, AV_LOG_ERROR, "Invalid picture dimensions: %d x %d!\n",
luma_width, luma_height);
return AVERROR_INVALIDDATA;
More information about the ffmpeg-cvslog
mailing list