From a9d9ef50bd1bf795d610882939bf7ccbe471bc5a Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Sat, 11 Jun 2005 14:39:52 +0000 Subject: Move another buffer into IRAM git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6674 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/codeca52.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/plugins/codeca52.c b/apps/plugins/codeca52.c index 050766a413..08439d31be 100644 --- a/apps/plugins/codeca52.c +++ b/apps/plugins/codeca52.c @@ -36,8 +36,9 @@ static a52_state_t * state; unsigned long samplesdone; unsigned long frequency; -/* A post-processing buffer used outside liba52 */ +/* Two buffers used outside liba52 */ static uint8_t buf[3840] IDATA_ATTR; +static int16_t int16_samples[256*2] IDATA_ATTR; static inline int16_t convert (int32_t i) { @@ -47,7 +48,6 @@ static inline int16_t convert (int32_t i) void output_audio(sample_t* samples,int flags) { int i; - static int16_t int16_samples[256*2]; flags &= A52_CHANNEL_MASK | A52_LFE; -- cgit v1.2.3