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

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new f6894debc0 avfilter/vf_hqdn3d: Remove unnecessary emms_c()
f6894debc0 is described below

commit f6894debc0b7e4bc6545ab6a8b0b5865579e6c4e
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Mon Mar 9 14:05:49 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Mon Mar 9 19:07:34 2026 +0100

    avfilter/vf_hqdn3d: Remove unnecessary emms_c()
    
    Added in e995cf1bccc6e91bbaa6a8771e23fb3ab259c110,
    yet this filter does not have any dsp function using MMX:
    it only has generic x86 assembly, no SIMD at all,
    so this emms_c() was always unnecessary.
    
    Reviewed-by: Kacper Michajłow <[email protected]>
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavfilter/vf_hqdn3d.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/libavfilter/vf_hqdn3d.c b/libavfilter/vf_hqdn3d.c
index f79ef04cd3..d880c2bdda 100644
--- a/libavfilter/vf_hqdn3d.c
+++ b/libavfilter/vf_hqdn3d.c
@@ -31,7 +31,6 @@
 #include "config.h"
 #include "libavutil/attributes.h"
 #include "libavutil/common.h"
-#include "libavutil/emms.h"
 #include "libavutil/mem.h"
 #include "libavutil/pixdesc.h"
 #include "libavutil/intreadwrite.h"
@@ -150,7 +149,6 @@ static int denoise_depth(HQDN3DContext *s,
     else
         denoise_temporal(src, dst, frame_ant,
                          w, h, sstride, dstride, temporal, depth);
-    emms_c();
     return 0;
 }
 

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

Reply via email to