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

jm at svn.xiph.org jm at svn.xiph.org
Wed Jan 25 02:40:51 PST 2006


Author: jm
Date: 2006-01-25 02:40:48 -0800 (Wed, 25 Jan 2006)
New Revision: 10753

Modified:
   trunk/speex/libspeex/cb_search_arm4.h
Log:
Disabled ARM4 optimization of compute_weighted_codebook() until it's fixed


Modified: trunk/speex/libspeex/cb_search_arm4.h
===================================================================
--- trunk/speex/libspeex/cb_search_arm4.h	2006-01-23 19:28:04 UTC (rev 10752)
+++ trunk/speex/libspeex/cb_search_arm4.h	2006-01-25 10:40:48 UTC (rev 10753)
@@ -32,8 +32,11 @@
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
+/* This optimization is temporaly disabled until it is fixed to account for the fact 
+   that "r" is now a 16-bit array */
+#if 0
 #define OVERRIDE_COMPUTE_WEIGHTED_CODEBOOK
-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)
+static void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
 {
    int i, j, k;
   //const signed char *shape;
@@ -131,3 +134,4 @@
    }
 
 }
+#endif



More information about the commits mailing list