1
0
Fork 0
forked from len0rd/rockbox

Disable AAC-SBR, AAC-SSR, and AAC-PS on Sansa clip. Clean up warnings introduced by this. Enable compiling the AAC codec on the Clip. Due to lack of memory for seek tables, files over 10 minutes long or so will probably fail.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20781 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2009-04-25 03:51:58 +00:00
parent 87b231c68c
commit f5884fdeb6
4 changed files with 10 additions and 1 deletions

View file

@ -86,8 +86,10 @@ extern struct codec_api* ci;
/* Allow decoding of MAIN profile AAC */
#define MAIN_DEC
#if MEMORYSIZE > 2
/* Allow decoding of SSR profile AAC */
#define SSR_DEC
#endif
/* Allow decoding of LTP profile AAC */
#define LTP_DEC
/* Allow decoding of LD profile AAC */
@ -123,9 +125,11 @@ extern struct codec_api* ci;
#undef ERROR_RESILIENCE
#endif
#if MEMORYSIZE > 2
#define SBR_DEC
//#define SBR_LOW_POWER
#define PS_DEC
#endif
/* FIXED POINT: No MAIN decoding */
#ifdef FIXED_POINT