diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-06-27 21:23:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-06-27 21:23:03 +0000 |
commit | a24017f4da1be50a43bd14db607205582abc7544 (patch) | |
tree | 16e3d6a2fc27e21a44238b3b647c50546e0bb5ce /apps/plugin.h | |
parent | 46136596433da25f3d802d72d0d1273a229c9d9f (diff) |
Moved the codec and plugin buffer sizes to the config-*.h files instead of
having it repeated in numerous files where they all had to be updated to the
same value if ever changed. This allows specific models to actually have its
own buffer sizes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6901 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r-- | apps/plugin.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 6d2b6e5bf0..d2253b42c6 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -80,13 +80,6 @@ #endif -/* These three sizes must match the ones set in plugins/plugin.lds */ -#if MEM >= 32 -#define PLUGIN_BUFFER_SIZE 0xC0000 -#else -#define PLUGIN_BUFFER_SIZE 0x8000 -#endif - #ifdef SIMULATOR #define PREFIX(_x_) sim_ ## _x_ #else |