[xiph-commits] r12700 - trunk/speex/libspeex
jm at svn.xiph.org
jm at svn.xiph.org
Fri Mar 9 13:25:15 PST 2007
Author: jm
Date: 2007-03-09 13:25:12 -0800 (Fri, 09 Mar 2007)
New Revision: 12700
Modified:
trunk/speex/libspeex/_kiss_fft_guts.h
Log:
Oops, C_MUL4 defined for float as well.
Modified: trunk/speex/libspeex/_kiss_fft_guts.h
===================================================================
--- trunk/speex/libspeex/_kiss_fft_guts.h 2007-03-09 20:58:35 UTC (rev 12699)
+++ trunk/speex/libspeex/_kiss_fft_guts.h 2007-03-09 21:25:12 UTC (rev 12700)
@@ -89,6 +89,9 @@
#define C_MUL(m,a,b) \
do{ (m).r = (a).r*(b).r - (a).i*(b).i;\
(m).i = (a).r*(b).i + (a).i*(b).r; }while(0)
+
+#define C_MUL4(m,a,b) C_MUL(m,a,b)
+
# define C_FIXDIV(c,div) /* NOOP */
# define C_MULBYSCALAR( c, s ) \
do{ (c).r *= (s);\
More information about the commits
mailing list