[FFmpeg-devel] [PATCH 11/14] [inline assembly] add memory to mpegaudiodsp

frederic.recoules at univ-grenoble-alpes.fr frederic.recoules at univ-grenoble-alpes.fr
Sun Apr 26 22:44:21 EEST 2020


From: Frédéric Recoules <frederic.recoules at orange.fr>

---
 libavcodec/x86/mpegaudiodsp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/x86/mpegaudiodsp.c b/libavcodec/x86/mpegaudiodsp.c
index 10b9e814d5..83457dfbb3 100644
--- a/libavcodec/x86/mpegaudiodsp.c
+++ b/libavcodec/x86/mpegaudiodsp.c
@@ -103,7 +103,7 @@ static void apply_window(const float *buf, const float *win1,
             "jl              1b                   \n\t"
             :"+&r"(count)
             :"r"(win1a), "r"(win2a), "r"(bufa), "r"(sum1a), "r"(sum2a)
-	     XMM_CLOBBERS_ONLY("xmm0", "xmm1", "xmm2", "xmm4")
+	    :"memory" XMM_CLOBBERS(, "xmm0", "xmm1", "xmm2", "xmm4")
             );
 
 #undef MULT
-- 
2.17.1



More information about the ffmpeg-devel mailing list