1
0
Fork 0
forked from len0rd/rockbox

Quick fix for voice UI on iPods. Proper fix (which does not impact

functionality in any way) coming later.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9190 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-03-22 15:19:59 +00:00
parent 930e315c64
commit a7b5a2ce73

View file

@ -114,7 +114,11 @@ enum {
#define GUARD_BUFSIZE (32*1024) #define GUARD_BUFSIZE (32*1024)
/* As defined in plugin.lds */ /* As defined in plugin.lds */
#if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002
#define CODEC_IRAM_ORIGIN 0x4000c000
#else
#define CODEC_IRAM_ORIGIN 0x1000c000 #define CODEC_IRAM_ORIGIN 0x1000c000
#endif
#define CODEC_IRAM_SIZE 0xc000 #define CODEC_IRAM_SIZE 0xc000
extern bool audio_is_initialized; extern bool audio_is_initialized;