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

Git pushed a commit to branch master
in repository ffmpeg.

commit 7763155395782ee6b521c9e9344051c2bfe16aa1
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Fri Feb 27 07:08:02 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Mon Mar 2 11:55:30 2026 +0100

    avcodec/snowenc: Add emms_c before allocations
    
    Needed for the allocations in ff_snow_common_init_after_header()
    (as well as for calculate_visual_weight() if
    spatial_decomposition_count could change).
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/snowenc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/snowenc.c b/libavcodec/snowenc.c
index f34130f184..43412bb974 100644
--- a/libavcodec/snowenc.c
+++ b/libavcodec/snowenc.c
@@ -1945,6 +1945,7 @@ redo_frame:
                 pic->pict_type= AV_PICTURE_TYPE_I;
                 s->keyframe=1;
                 s->current_picture->flags |= AV_FRAME_FLAG_KEY;
+                emms_c();
                 goto redo_frame;
             }
 

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

Reply via email to