Enable ARM EQ support.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8518 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-02-01 08:36:56 +00:00
parent 146fe6cfb5
commit 98c37c7f89
2 changed files with 3 additions and 1 deletions

View file

@ -79,5 +79,7 @@ dsp.c
eq.c eq.c
#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) #if defined(CPU_COLDFIRE) && !defined(SIMULATOR)
eq_cf.S eq_cf.S
#elif defined(CPU_ARM) && !defined(SIMULATOR)
eq_arm.S
#endif #endif
#endif #endif

View file

@ -213,7 +213,7 @@ void eq_hs_coefs(unsigned long cutoff, unsigned long Q, long db, long *c)
c[4] = DIV64(-a2, a0, 24); c[4] = DIV64(-a2, a0, 24);
} }
#if !defined(CPU_COLDFIRE) || defined(SIMULATOR) #if (!defined(CPU_COLDFIRE) && !defined(CPU_ARM)) || defined(SIMULATOR)
void eq_filter(long **x, struct eqfilter *f, unsigned num, void eq_filter(long **x, struct eqfilter *f, unsigned num,
unsigned channels, unsigned shift) unsigned channels, unsigned shift)
{ {