1
0
Fork 0
forked from len0rd/rockbox

increase codec buffer size to fit the mpc codec properly (NOTE: the codec

loader does not detect when the full codec doesn't fit)


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6827 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-06-22 21:34:11 +00:00
parent 97a1cf80f7
commit d6cf3a0305
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@
#endif #endif
/* This size must match the one set in ../plugins/plugin.lds */ /* This size must match the one set in ../plugins/plugin.lds */
#define CODEC_BUFFER_SIZE 0x3C000 #define CODEC_BUFFER_SIZE 0x40000
#ifdef SIMULATOR #ifdef SIMULATOR
#define PREFIX(_x_) sim_ ## _x_ #define PREFIX(_x_) sim_ ## _x_

View file

@ -23,7 +23,7 @@ OUTPUT_FORMAT(elf32-sh)
#endif #endif
#ifdef CODEC #ifdef CODEC
#define CODEC_SIZE 0x3C000 #define CODEC_SIZE 0x40000
#else #else
#define CODEC_SIZE 0 #define CODEC_SIZE 0
#endif #endif