summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-03-22 15:19:59 +0000
committerThom Johansen <thomj@rockbox.org>2006-03-22 15:19:59 +0000
commita7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78 (patch)
treebb3e98937e1abab264b6792c3dd3e74e000d528c
parent930e315c6422f363fe7db08fc72dcd40f41543c1 (diff)
downloadrockbox-a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78.tar.gz
rockbox-a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78.zip
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
-rw-r--r--apps/playback.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c
index ce0e326a4c..5c7bcac622 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -114,7 +114,11 @@ enum {
#define GUARD_BUFSIZE (32*1024)
/* As defined in plugin.lds */
+#if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002
+#define CODEC_IRAM_ORIGIN 0x4000c000
+#else
#define CODEC_IRAM_ORIGIN 0x1000c000
+#endif
#define CODEC_IRAM_SIZE 0xc000
extern bool audio_is_initialized;