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 a6aa754cde9037f8531900eb4a380aa30bd4a358
Author:     Michael Niedermayer <[email protected]>
AuthorDate: Sun May 31 21:26:52 2026 +0200
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Sun Jun 14 04:59:08 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 763ad5cc2f..8baf8e9d93 100644
--- a/libavcodec/tdsc.c
+++ b/libavcodec/tdsc.c
@@ -127,6 +127,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, 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