Displaying 1 result from an estimated 1 matches for "cp_search_arm4".
2006 Jan 23
2
Compiler warnings with GCC 3.4.4 and perfomance question on a Arm 7
...speex on a Philips LPC2138 Arm 7 processor and have hit two
compiler warnings when using FIXED_POINT and the Arm 4 asm code.
In cb_search.c get a warning on the call to compute_weighted_codebook of:
"passing arg 2 of 'compute_weighted_codebook' from incompatible pointer type'
In cp_search_arm4.h it is defined as:
static void compute_weighted_codebook(const signed char *shape_cb,
const spx_sig_t *r,
.....
but in cb_search.c it is defined as static void
compute_weighted_codebook(const signed char *shape_cb, const
spx_word16_t *r, .....
So it appears the arm version has arg 2 defined diff...