rockbox/apps/codecs/lib/SOURCES
Thomas Martitz 35e8b1429a Rockbox as an application: Replace many occurences of #ifdef SIMULATOR with #if (CONFIG_PLATFORM & PLATFORM_HOSTED) (or equivalently).
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
2010-06-21 16:53:00 +00:00

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