diff mbox series

[FFmpeg-devel] avcodec/indeo3: add support for more dimensions

Message ID 20210214181537.2693-1-onemda@gmail.com
State Accepted
Commit 59dd70299007677bd1501973f537d54fc52b2746
Headers show
Series [FFmpeg-devel] avcodec/indeo3: add support for more dimensions | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Paul B Mahol Feb. 14, 2021, 6:15 p.m. UTC
Fixes #6581

Signed-off-by: Paul B Mahol <onemda@gmail.com>
---
 libavcodec/indeo3.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Paul B Mahol Feb. 19, 2021, 10:32 a.m. UTC | #1
will apply
diff mbox series

Patch

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;