This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch release/8.0
in repository ffmpeg.

commit 52c79e334fd7fabdaf7ed751c6b8a520aada3f3a
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Sun May 31 20:17:16 2026 +0200
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Sun Jun 14 04:59:08 2026 +0200

    avcodec/cri: propagate max_pixels to the JPEG tile decoder
    
    Fixes: 
489941776/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CRI_fuzzer-4845035614175232
    Found-by: continuous fuzzing process 
https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by: Michael Niedermayer <[email protected]>
    (cherry picked from commit cdba2d76dcba2bb8295fb2bb2cc8bda8ccb24b29)
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 libavcodec/cri.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/cri.c b/libavcodec/cri.c
index f380597238..72f1eff9d8 100644
--- a/libavcodec/cri.c
+++ b/libavcodec/cri.c
@@ -69,6 +69,7 @@ static av_cold int cri_decode_init(AVCodecContext *avctx)
     s->jpeg_avctx->flags = avctx->flags;
     s->jpeg_avctx->flags2 = avctx->flags2;
     s->jpeg_avctx->idct_algo = avctx->idct_algo;
+    s->jpeg_avctx->max_pixels = avctx->max_pixels;
     ret = avcodec_open2(s->jpeg_avctx, NULL, NULL);
     if (ret < 0)
         return ret;

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to