diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-22 22:03:13 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-06-22 22:03:13 +0000 |
| commit | df5170830c41e7cdafcbcc070f7245970f84d233 (patch) | |
| tree | 9e5eda14c167e740f55f2d92b7c62815d490d2b8 | |
| parent | 8b2531be27bf8ce70acca3a126827b3afc133f08 (diff) | |
| download | rockbox-df5170830c41e7cdafcbcc070f7245970f84d233.zip rockbox-df5170830c41e7cdafcbcc070f7245970f84d233.tar.gz rockbox-df5170830c41e7cdafcbcc070f7245970f84d233.tar.bz2 rockbox-df5170830c41e7cdafcbcc070f7245970f84d233.tar.xz | |
Fixed CODEC_BUFFER_SIZE mismatch
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6830 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs.h | 3 | ||||
| -rw-r--r-- | apps/plugin.h | 1 | ||||
| -rw-r--r-- | firmware/app.lds | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs.h b/apps/codecs.h index 4cf1f81..e322d75 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -72,7 +72,8 @@ #endif -/* This size must match the one set in ../plugins/plugin.lds */ +/* This size must match the one set in ../plugins/plugin.lds and + ../../firmware/app.lds */ #define CODEC_BUFFER_SIZE 0x40000 #ifdef SIMULATOR diff --git a/apps/plugin.h b/apps/plugin.h index 6bd4ed7..68916b8 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -86,7 +86,6 @@ #else #define PLUGIN_BUFFER_SIZE 0x8000 #endif -#define CODEC_BUFFER_SIZE 0x3C000 #ifdef SIMULATOR #define PREFIX(_x_) sim_ ## _x_ diff --git a/firmware/app.lds b/firmware/app.lds index 06df52d..91f0395 100644 --- a/firmware/app.lds +++ b/firmware/app.lds @@ -108,7 +108,7 @@ _pluginbuf = 0; #endif #if CONFIG_HWCODEC == MASNONE -#define CODECSIZE 0x3C000 +#define CODECSIZE 0x40000 #else #define CODECSIZE 0 #endif |