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

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

commit 926a373d66db259d85ccf061cac3f9d58292076c
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Sun May 31 21:26:52 2026 +0200
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Fri Jun 19 15:58:40 2026 +0200

    avcodec/tdsc: propagate max_pixels to the JPEG tile decoder
    
    Signed-off-by: Michael Niedermayer <[email protected]>
    (cherry picked from commit 47f3996bdd1069b4e46dfcc7ad6c887c2af408e0)
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 libavcodec/tdsc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/tdsc.c b/libavcodec/tdsc.c
index b65f81a4a3..a2c4b71d82 100644
--- a/libavcodec/tdsc.c
+++ b/libavcodec/tdsc.c
@@ -129,6 +129,7 @@ static av_cold int tdsc_init(AVCodecContext *avctx)
     ctx->jpeg_avctx->flags = avctx->flags;
     ctx->jpeg_avctx->flags2 = avctx->flags2;
     ctx->jpeg_avctx->idct_algo = avctx->idct_algo;
+    ctx->jpeg_avctx->max_pixels = avctx->max_pixels;
     ret = avcodec_open2(ctx->jpeg_avctx, codec, NULL);
     if (ret < 0)
         return ret;

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

Reply via email to