diff options
| author | Thom Johansen <thomj@rockbox.org> | 2006-03-22 15:19:59 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2006-03-22 15:19:59 +0000 |
| commit | a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78 (patch) | |
| tree | bb3e98937e1abab264b6792c3dd3e74e000d528c /apps/playback.c | |
| parent | 930e315c6422f363fe7db08fc72dcd40f41543c1 (diff) | |
| download | rockbox-a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78.zip rockbox-a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78.tar.gz rockbox-a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78.tar.bz2 rockbox-a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78.tar.xz | |
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
Diffstat (limited to 'apps/playback.c')
| -rw-r--r-- | apps/playback.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c index ce0e326..5c7bcac 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; |