forked from len0rd/rockbox
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
This commit is contained in:
parent
f51189fa4d
commit
c38378eff1
1 changed files with 3 additions and 3 deletions
|
|
@ -58,7 +58,7 @@ static VLC spectral_coeff_tab[7];
|
||||||
#if defined(CPU_ARM) && (ARM_ARCH >= 5) /*ARMv5e+ uses 32x16 multiplication*/
|
#if defined(CPU_ARM) && (ARM_ARCH >= 5) /*ARMv5e+ uses 32x16 multiplication*/
|
||||||
static int16_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (32)));
|
static int16_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (32)));
|
||||||
#else
|
#else
|
||||||
static int32_t qmf_window[48] IBSS_ATTR;
|
static int32_t qmf_window[48] IBSS_ATTR __attribute__ ((aligned (16)));
|
||||||
#endif
|
#endif
|
||||||
static int32_t atrac3_spectrum [2][1024] IBSS_ATTR __attribute__((aligned(16)));
|
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)));
|
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,
|
int16_t *win,
|
||||||
unsigned int nIn)
|
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
|
extern void
|
||||||
atrac3_iqmf_dewindowing(int32_t *out,
|
atrac3_iqmf_dewindowing(int32_t *out,
|
||||||
int32_t *in,
|
int32_t *in,
|
||||||
int16_t *win,
|
int32_t *win,
|
||||||
unsigned int nIn);
|
unsigned int nIn);
|
||||||
|
|
||||||
#elif defined (CPU_COLDFIRE)
|
#elif defined (CPU_COLDFIRE)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue