summaryrefslogtreecommitdiff
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
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
-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];
58#if defined(CPU_ARM) && (ARM_ARCH >= 5) /*ARMv5e+ uses 32x16 multiplication*/ 58#if defined(CPU_ARM) && (ARM_ARCH >= 5) /*ARMv5e+ uses 32x16 multiplication*/
59static int16_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (32))); 59static int16_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (32)));
60#else 60#else
61static int32_t qmf_window[48] IBSS_ATTR; 61static int32_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (16)));
62#endif 62#endif
63static int32_t atrac3_spectrum [2][1024] IBSS_ATTR __attribute__((aligned(16))); 63static int32_t atrac3_spectrum [2][1024] IBSS_ATTR __attribute__((aligned(16)));
64static int32_t atrac3_IMDCT_buf[2][ 512] IBSS_ATTR __attribute__((aligned(16))); 64static 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;
134 int16_t *win, 134 int16_t *win,
135 unsigned int nIn) 135 unsigned int nIn)
136 { 136 {
137 //atrac3_iqmf_dewindowing_armv5e(out, in, win, nIn); 137 atrac3_iqmf_dewindowing_armv5e(out, in, win, nIn);
138 138
139 } 139 }
140 140
@@ -143,7 +143,7 @@ static channel_unit channel_units[2] IBSS_ATTR_LARGE_IRAM;
143 extern void 143 extern void
144 atrac3_iqmf_dewindowing(int32_t *out, 144 atrac3_iqmf_dewindowing(int32_t *out,
145 int32_t *in, 145 int32_t *in,
146 int16_t *win, 146 int32_t *win,
147 unsigned int nIn); 147 unsigned int nIn);
148 148
149#elif defined (CPU_COLDFIRE) 149#elif defined (CPU_COLDFIRE)