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:
parent
8b2531be27
commit
df5170830c
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@
|
|||
#else
|
||||
#define PLUGIN_BUFFER_SIZE 0x8000
|
||||
#endif
|
||||
#define CODEC_BUFFER_SIZE 0x3C000
|
||||
|
||||
#ifdef SIMULATOR
|
||||
#define PREFIX(_x_) sim_ ## _x_
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ _pluginbuf = 0;
|
|||
#endif
|
||||
|
||||
#if CONFIG_HWCODEC == MASNONE
|
||||
#define CODECSIZE 0x3C000
|
||||
#define CODECSIZE 0x40000
|
||||
#else
|
||||
#define CODECSIZE 0
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue