rockbox/lib/rbcodec/codecs/libtta/SOURCES
Aidan MacDonald da4e02cdd3 codecs: disable incompatible ARM assembly for Cortex-M
Some assembly routines don't work on Thumb as-is. For now
just disable these so the codecs compile.

Affected codecs:

- libflac
- libmad
- libspeex
- libtta
- libwavpack

A few DSP routines need to be disabled for the same reason:

- crossfeed_process
- crossfeed_meier_process
- resample_hermite
- filter_process
- sample_output_stereo

Change-Id: I277e0719652096745a19a7e2b597eff32d8e1553
2025-04-19 13:00:17 -04:00

6 lines
104 B
Text

ttadec.c
#if defined(CPU_ARM_CLASSIC)
filter_arm.S
#elif defined(CPU_COLDFIRE)
filter_coldfire.S
#endif