From d6cf3a0305711380f6e36b54e1222dea06632c4c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 22 Jun 2005 21:34:11 +0000 Subject: [PATCH] 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 --- apps/codecs.h | 2 +- apps/plugins/plugin.lds | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/codecs.h b/apps/codecs.h index 59de3ecde7..4cf1f81ed1 100644 --- a/apps/codecs.h +++ b/apps/codecs.h @@ -73,7 +73,7 @@ #endif /* This size must match the one set in ../plugins/plugin.lds */ -#define CODEC_BUFFER_SIZE 0x3C000 +#define CODEC_BUFFER_SIZE 0x40000 #ifdef SIMULATOR #define PREFIX(_x_) sim_ ## _x_ diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 619bb0e7e8..f1b4d300d7 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -23,7 +23,7 @@ OUTPUT_FORMAT(elf32-sh) #endif #ifdef CODEC -#define CODEC_SIZE 0x3C000 +#define CODEC_SIZE 0x40000 #else #define CODEC_SIZE 0 #endif