[SCM] libav/experimental: make high precission synth filter 3 times faster on x86

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:50:08 UTC 2013


The following commit has been merged in the experimental branch:
commit 355903f5a8ba254b439903a77d75f1d9c0d3f092
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Tue Aug 22 11:11:04 2006 +0000

    make high precission synth filter 3 times faster on x86
    
    Originally committed as revision 6046 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index 53a3890..9593e03 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -784,8 +784,13 @@ static inline int round_sample(int64_t *sum)
     return sum1;
 }
 
+#ifdef ARCH_X86
+/* ask gcc devels why this is 3 times faster then the generic code below */
+#define MULS(ra, rb) \
+    ({ int64_t rt; asm ("imull %2\n\t" : "=A"(rt) : "a" (ra), "g" (rb)); rt; })
+#else
 #define MULS(ra, rb) MUL64(ra, rb)
-
+#endif
 #endif
 
 #define SUM8(sum, op, w, p) \

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list