1
0
Fork 0
forked from len0rd/rockbox

disable the ARM optimized MDCT for the Gigabeat for now as it creates a data abort

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14940 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marcoen Hirschberg 2007-10-01 13:42:03 +00:00
parent 479a6a77e0
commit 6b559b2188
2 changed files with 1 additions and 1 deletions

View file

@ -38,7 +38,7 @@
#include "mdct.h"
#include "mdct_lookup.h"
#ifdef CPU_ARM
#if defined(CPU_ARM) && CONFIG_CPU != S3C2440
extern void mdct_butterfly_32(DATA_TYPE *x);
extern void mdct_butterfly_generic_loop(DATA_TYPE *x1, DATA_TYPE *x2,

View file