[SCM] libav/experimental: armv5 optimizations patch by Siarhei Siamashka siarhei.siamashka at gmail com
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 15:50:42 UTC 2013
The following commit has been merged in the experimental branch:
commit 024da4b1460038812ce6bd598f746a7f60831354
Author: Siarhei Siamashka <siarhei.siamashka at gmail.com>
Date: Sun Sep 10 22:29:02 2006 +0000
armv5 optimizations
patch by Siarhei Siamashka siarhei.siamashka at gmail com
Originally committed as revision 6228 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c
index 1fbde20..e9c7833 100644
--- a/libavcodec/mpegaudiodec.c
+++ b/libavcodec/mpegaudiodec.c
@@ -27,6 +27,11 @@
#include "bitstream.h"
#include "dsputil.h"
+/* Assume that all Intel XScale processors support armv5 edsp instructions */
+#if defined(ARCH_ARMV4L) && defined (HAVE_IWMMXT)
+#define ARCH_ARM5E
+#endif
+
/*
* TODO:
* - in low precision mode, use more 16 bit multiplies in synth filter
@@ -791,6 +796,17 @@ static inline int round_sample(int *sum)
/* signed 16x16 -> 32 multiply */
# define MULS(ra, rb) \
({ int __rt; asm ("mullhw %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); __rt; })
+
+# elif defined(ARCH_ARM5E)
+
+ /* signed 16x16 -> 32 multiply add accumulate */
+# define MACS(rt, ra, rb) \
+ asm ("smlabb %0, %2, %3, %0" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb));
+
+ /* signed 16x16 -> 32 multiply */
+# define MULS(ra, rb) \
+ ({ int __rt; asm ("smulbb %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); __rt; })
+
# else
/* signed 16x16 -> 32 multiply add accumulate */
# define MACS(rt, ra, rb) rt += (ra) * (rb)
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list