From 073d4a71c881ee74fc9667806fb7d2ae62a52ec0 Mon Sep 17 00:00:00 2001 From: Dominik Wenger Date: Sun, 27 Jul 2008 14:47:43 +0000 Subject: Asap codec: put outputbuffer into iram. Improves performance. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18129 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/asap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/codecs/asap.c b/apps/codecs/asap.c index 31b2482ce3..b549edad8b 100644 --- a/apps/codecs/asap.c +++ b/apps/codecs/asap.c @@ -24,9 +24,9 @@ CODEC_HEADER -#define CHUNK_SIZE (1024*8) +#define CHUNK_SIZE (1024*2) -static byte samples[CHUNK_SIZE]; /* The sample buffer */ +static byte samples[CHUNK_SIZE] IBSS_ATTR; /* The sample buffer */ static ASAP_State asap; /* asap codec state */ /* this is the codec entry point */ -- cgit v1.2.3