forked from len0rd/rockbox
Fix mp3 playback on the gigabeat by not putting code in IRAM. Someone actually familar with the gigabeat port should check this.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14050 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
e64f7e3a6f
commit
f68ab0d497
3 changed files with 10 additions and 10 deletions
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
/* This performs slower in IRAM on PP502x and there is no space in
|
||||
mpegplayer on the PP5002 */
|
||||
#if defined(CPU_PP502x) || (CONFIG_CPU == PP5002 && defined(MPEGPLAYER))
|
||||
#if defined(CPU_PP502x) || (CONFIG_CPU == PP5002 && defined(MPEGPLAYER)) || defined(TOSHIBA_GIGABEAT_F)
|
||||
.section .text,"ax",%progbits
|
||||
#else
|
||||
.section .icode,"ax",%progbits
|
||||
|
|
|
|||
|
|
@ -1044,7 +1044,7 @@ void synth_full2(mad_fixed_t *pcm, mad_fixed_t (*fo)[8], mad_fixed_t (*fe)[8],
|
|||
|
||||
/* This performs slower in IRAM on PP502x and there is no space in
|
||||
mpegplayer on the PP5002 */
|
||||
#if !defined(CPU_PP502x) && !(CONFIG_CPU == PP5002 && defined(MPEGPLAYER))
|
||||
#if !defined(CPU_PP502x) && !(CONFIG_CPU == PP5002 && defined(MPEGPLAYER)) && !defined(TOSHIBA_GIGABEAT_F)
|
||||
static
|
||||
void synth_full(struct mad_synth *synth, struct mad_frame const *frame,
|
||||
unsigned int nch, unsigned int ns) ICODE_ATTR;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
/* This performs slower in IRAM on PP502x and there is no space in
|
||||
mpegplayer on the PP5002 */
|
||||
#if defined(CPU_PP502x) || (CONFIG_CPU == PP5002 && defined(MPEGPLAYER))
|
||||
#if defined(CPU_PP502x) || (CONFIG_CPU == PP5002 && defined(MPEGPLAYER)) || defined(TOSHIBA_GIGABEAT_F)
|
||||
.section .text,"ax",%progbits
|
||||
#else
|
||||
.section .icode,"ax",%progbits
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue