35e8b1429a
The simulator defines PLATFORM_HOSTED, as RaaA will do (RaaA will not define SIMULATOR). The new define is to (de-)select code to compile on hosted platforms generally. Should be no functional change to targets or the simulator. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27019 a1c6a512-1295-4272-9138-f99709370657
29 lines
458 B
Text
29 lines
458 B
Text
#if CONFIG_CODEC == SWCODEC /* software codec platforms */
|
|
codeclib.c
|
|
fixedpoint.c
|
|
|
|
/* OLD MDCT */
|
|
/* (when all other codecs are remediated this can be remoed) */
|
|
mdct2.c
|
|
mdct_lookup.c
|
|
|
|
fft-ffmpeg.c
|
|
mdct.c
|
|
|
|
#ifdef CPU_ARM
|
|
mdct_arm.S
|
|
setjmp_arm.S
|
|
../../../firmware/target/arm/support-arm.S
|
|
#endif
|
|
|
|
#ifdef CPU_COLDFIRE
|
|
setjmp_cf.S
|
|
#endif
|
|
|
|
#ifdef CPU_MIPS
|
|
setjmp_mips.S
|
|
#endif
|
|
|
|
#elif (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(__APPLE__)
|
|
osx.dummy.c
|
|
#endif
|