diff options
author | Dave Chapman <dave@dchapman.com> | 2005-06-11 14:39:52 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-06-11 14:39:52 +0000 |
commit | a9d9ef50bd1bf795d610882939bf7ccbe471bc5a (patch) | |
tree | b4023da668c74fad1b0012bef1f4427b2116249d /apps/plugins | |
parent | 3e76783101c596346004f86ed84fb95735238c1b (diff) |
Move another buffer into IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6674 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/codeca52.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |