1
0
Fork 0
forked from len0rd/rockbox

Fix r27202 red. MCF5249 plugin IRAM is already very occupied.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27203 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2010-07-01 00:46:15 +00:00
parent cf73340f1e
commit 2cfa7ba746

View file

@ -279,7 +279,12 @@ static bool pacbox_menu(void)
/* Sound is emulated in ISR context, so not much is done per sound frame */
#define NBSAMPLES 128
static uint32_t sound_buf[NBSAMPLES];
#if CONFIG_CPU == MCF5249
/* Not enough to put this in IRAM */
static int raw_buf[NBSAMPLES];
#else
static int raw_buf[NBSAMPLES] IBSS_ATTR;
#endif
/*
Audio callback