1
0
Fork 0
forked from len0rd/rockbox

rename config.h to config-speex.h

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12750 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marcoen Hirschberg 2007-03-13 14:23:20 +00:00
parent ef4a080da4
commit 5cbaa28641
38 changed files with 39 additions and 38 deletions

View file

@ -19,7 +19,7 @@ The .[ch] files from speex/libspeex/ and speex/include/ were imported
into Rockbox. This includes the test files. Some hackery was done to into Rockbox. This includes the test files. Some hackery was done to
the include files so that they #include properly when built in Rockbox. the include files so that they #include properly when built in Rockbox.
A simple config.h file was added to enable libspeex's fixed-point A simple config-speex.h file was added to enable libspeex's fixed-point
integer-only mode and to specify the endianness of the target CPU. Also, integer-only mode and to specify the endianness of the target CPU. Also,
ARM specific optimisations were enabled. ARM specific optimisations were enabled.

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex_bits.h> #include <speex/speex_bits.h>

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "cb_search.h" #include "cb_search.h"

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
/*#define USE_SMALLFT*/ /*#define USE_SMALLFT*/

View file

@ -32,7 +32,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "filterbank.h" #include "filterbank.h"

View file

@ -31,10 +31,9 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "filters.h"
#include "stack_alloc.h" #include "stack_alloc.h"
#include "misc.h" #include "misc.h"
#include "math_approx.h" #include "math_approx.h"
@ -47,6 +46,8 @@
#include "filters_arm4.h" #include "filters_arm4.h"
#elif defined (BFIN_ASM) #elif defined (BFIN_ASM)
#include "filters_bfin.h" #include "filters_bfin.h"
#else
#include "filters.h"
#endif #endif

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif

View file

@ -15,7 +15,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "_kiss_fft_guts.h" #include "_kiss_fft_guts.h"

View file

@ -13,7 +13,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "kiss_fftr.h" #include "kiss_fftr.h"

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif

View file

@ -50,7 +50,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "lpc.h" #include "lpc.h"

View file

@ -80,7 +80,7 @@ Heavily modified by Jean-Marc Valin (c) 2002-2006 (fixed-point,
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <math.h> #include <math.h>

View file

@ -31,7 +31,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <math.h> #include <math.h>

View file

@ -31,7 +31,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "math_approx.h" #include "math_approx.h"

View file

@ -66,7 +66,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "misc.h" #include "misc.h"

View file

@ -31,7 +31,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <stdlib.h> #include <stdlib.h>

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "modes.h" #include "modes.h"

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <math.h> #include <math.h>

View file

@ -56,7 +56,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <math.h> #include <math.h>

View file

@ -31,7 +31,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "quant_lsp.h" #include "quant_lsp.h"

View file

@ -51,7 +51,7 @@ TODO list:
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#ifdef OUTSIDE_SPEEX #ifdef OUTSIDE_SPEEX

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <math.h> #include <math.h>

View file

@ -29,7 +29,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <math.h> #include <math.h>

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "modes.h" #include "modes.h"

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex_callbacks.h> #include <speex/speex_callbacks.h>

View file

@ -32,7 +32,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "misc.h" #include "misc.h"

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex_stereo.h> #include <speex/speex_stereo.h>

View file

@ -1,5 +1,5 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex_preprocess.h> #include <speex/speex_preprocess.h>

View file

@ -1,5 +1,5 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <stdio.h> #include <stdio.h>

View file

@ -1,5 +1,5 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex.h> #include <speex/speex.h>

View file

@ -1,5 +1,5 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex.h> #include <speex/speex.h>

View file

@ -1,5 +1,5 @@
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <speex/speex.h> #include <speex/speex.h>

View file

@ -31,7 +31,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include <stdio.h> #include <stdio.h>

View file

@ -33,7 +33,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "vbr.h" #include "vbr.h"

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#ifdef VORBIS_PSYCHO #ifdef VORBIS_PSYCHO

View file

@ -31,7 +31,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "vq.h" #include "vq.h"

View file

@ -30,7 +30,7 @@
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
#include "config.h" #include "config-speex.h"
#endif #endif
#include "misc.h" #include "misc.h"