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:
parent
cf73340f1e
commit
2cfa7ba746
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue