[xiph-commits] r8875 - trunk/speex/libspeex

jm at motherfish-iii.xiph.org jm at motherfish-iii.xiph.org
Tue Feb 8 14:29:47 PST 2005


Author: jm
Date: 2005-02-08 14:29:46 -0800 (Tue, 08 Feb 2005)
New Revision: 8875

Modified:
   trunk/speex/libspeex/Makefile.am
   trunk/speex/libspeex/cb_search.c
Log:
Make use of cb_search_arm4.h


Modified: trunk/speex/libspeex/Makefile.am
===================================================================
--- trunk/speex/libspeex/Makefile.am	2005-02-08 22:28:53 UTC (rev 8874)
+++ trunk/speex/libspeex/Makefile.am	2005-02-08 22:29:46 UTC (rev 8875)
@@ -69,7 +69,8 @@
 	fixed_arm5e.h \
 	fixed_debug.h \
 	fixed_generic.h \
-	cb_search_sse.h
+	cb_search_sse.h \
+	cb_search_arm4.h
 
 
 libspeex_la_LDFLAGS = -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@

Modified: trunk/speex/libspeex/cb_search.c
===================================================================
--- trunk/speex/libspeex/cb_search.c	2005-02-08 22:28:53 UTC (rev 8874)
+++ trunk/speex/libspeex/cb_search.c	2005-02-08 22:29:46 UTC (rev 8875)
@@ -42,6 +42,8 @@
 
 #ifdef _USE_SSE
 #include "cb_search_sse.h"
+#elif defined(ARM4_ASM) || defined(ARM5E_ASM)
+#include "cb_search_arm4.h"
 #else
 
 static void compute_weighted_codebook(const signed char *shape_cb, const spx_sig_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)



More information about the commits mailing list