summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2010-11-10 18:34:27 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2010-11-10 18:34:27 +0000
commitc38378eff149761d814e13c7fcc0757b36b004c2 (patch)
treeadc64c1da7882bb89f37b5be8394a97168316d5f /apps
parentf51189fa4d16c138c951775a237326b807fdda89 (diff)
downloadrockbox-c38378eff149761d814e13c7fcc0757b36b004c2.tar.gz
rockbox-c38378eff149761d814e13c7fcc0757b36b004c2.zip
Remove some benchmarking code accidentally included in the previous commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28550 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/libatrac/atrac3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libatrac/atrac3.c b/apps/codecs/libatrac/atrac3.c
index f6085fa2fa..dbc7328c29 100644
--- a/apps/codecs/libatrac/atrac3.c
+++ b/apps/codecs/libatrac/atrac3.c
@@ -58,7 +58,7 @@ static VLC spectral_coeff_tab[7];
#if defined(CPU_ARM) && (ARM_ARCH >= 5) /*ARMv5e+ uses 32x16 multiplication*/
static int16_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (32)));
#else
-static int32_t qmf_window[48] IBSS_ATTR;
+static int32_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (16)));
#endif
static int32_t atrac3_spectrum [2][1024] IBSS_ATTR __attribute__((aligned(16)));
static int32_t atrac3_IMDCT_buf[2][ 512] IBSS_ATTR __attribute__((aligned(16)));
@@ -134,7 +134,7 @@ static channel_unit channel_units[2] IBSS_ATTR_LARGE_IRAM;
int16_t *win,
unsigned int nIn)
{
- //atrac3_iqmf_dewindowing_armv5e(out, in, win, nIn);
+ atrac3_iqmf_dewindowing_armv5e(out, in, win, nIn);
}
@@ -143,7 +143,7 @@ static channel_unit channel_units[2] IBSS_ATTR_LARGE_IRAM;
extern void
atrac3_iqmf_dewindowing(int32_t *out,
int32_t *in,
- int16_t *win,
+ int32_t *win,
unsigned int nIn);
#elif defined (CPU_COLDFIRE)