1
0
Fork 0
forked from len0rd/rockbox

Fixed CODEC_BUFFER_SIZE mismatch

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6830 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-06-22 22:03:13 +00:00
parent 8b2531be27
commit df5170830c
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -86,7 +86,6 @@
#else
#define PLUGIN_BUFFER_SIZE 0x8000
#endif
#define CODEC_BUFFER_SIZE 0x3C000
#ifdef SIMULATOR
#define PREFIX(_x_) sim_ ## _x_

View file

@ -108,7 +108,7 @@ _pluginbuf = 0;
#endif
#if CONFIG_HWCODEC == MASNONE
#define CODECSIZE 0x3C000
#define CODECSIZE 0x40000
#else
#define CODECSIZE 0
#endif