diff options
| author | Amaury Pouly <pamaury@rockbox.org> | 2011-09-13 23:38:42 +0000 |
|---|---|---|
| committer | Amaury Pouly <pamaury@rockbox.org> | 2011-09-13 23:38:42 +0000 |
| commit | 3d46b080fda6f271da0949f1338667c7805b145e (patch) | |
| tree | 1ddb2e9a4b03e2847a6f6ab78a059764ea9a3779 | |
| parent | d945c36677b98a796a6921c338302321ced69457 (diff) | |
| download | rockbox-3d46b080fda6f271da0949f1338667c7805b145e.zip rockbox-3d46b080fda6f271da0949f1338667c7805b145e.tar.gz rockbox-3d46b080fda6f271da0949f1338667c7805b145e.tar.bz2 rockbox-3d46b080fda6f271da0949f1338667c7805b145e.tar.xz | |
imx233/fuze+: use random size for plugin and codec buf (must be non-zero for init attr)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30522 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config/sansafuzeplus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/config/sansafuzeplus.h b/firmware/export/config/sansafuzeplus.h index 13ad3af..15288b1 100644 --- a/firmware/export/config/sansafuzeplus.h +++ b/firmware/export/config/sansafuzeplus.h @@ -97,10 +97,10 @@ #define HAVE_SW_POWEROFF /* The number of bytes reserved for loadable codecs */ -#define CODEC_SIZE 0 +#define CODEC_SIZE 0x100000 /* The number of bytes reserved for loadable plugins */ -#define PLUGIN_BUFFER_SIZE 0 +#define PLUGIN_BUFFER_SIZE 0x80000 #define AB_REPEAT_ENABLE |