summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Goode <jeffg7@gmail.com>2009-09-21 17:45:56 +0000
committerJeffrey Goode <jeffg7@gmail.com>2009-09-21 17:45:56 +0000
commita4a24999d9a16c3d1c60dd44d9ac3ae324045010 (patch)
treeb479cbad65ecd97ab2a929a90df07a5a15c76ac3
parent81f268ad48aa3917a5d3a0e3e4718377b6558449 (diff)
downloadrockbox-a4a24999d9a16c3d1c60dd44d9ac3ae324045010.tar.gz
rockbox-a4a24999d9a16c3d1c60dd44d9ac3ae324045010.zip
Fix red: remove buffer from IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22773 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 5f9749c02c..e7a6a9182a 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -268,7 +268,7 @@ static int32_t *start_lim_buf[2] IBSS_ATTR,
268static uint16_t lim_buf_peak[LIMITER_BUFFER_SIZE] IBSS_ATTR; 268static uint16_t lim_buf_peak[LIMITER_BUFFER_SIZE] IBSS_ATTR;
269static uint16_t *start_peak IBSS_ATTR, 269static uint16_t *start_peak IBSS_ATTR,
270 *end_peak IBSS_ATTR; 270 *end_peak IBSS_ATTR;
271static uint16_t out_buf_peak[MAX_COUNT] IBSS_ATTR; 271static uint16_t out_buf_peak[MAX_COUNT];
272static uint16_t *out_buf_peak_index IBSS_ATTR; 272static uint16_t *out_buf_peak_index IBSS_ATTR;
273static uint16_t release_peak IBSS_ATTR; 273static uint16_t release_peak IBSS_ATTR;
274static int32_t in_samp IBSS_ATTR, 274static int32_t in_samp IBSS_ATTR,