1
0
Fork 0
forked from len0rd/rockbox

Assembler optimised crossfeed routine for ARM. Performance improvement is more than double. Should work fine, but watch your ears nevertheless.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10608 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-08-16 12:38:49 +00:00
parent 1dc62dfc6b
commit 56f2ca74ad
3 changed files with 81 additions and 1 deletions

View file

@ -22,7 +22,7 @@
#ifndef _DSP_ASM_H
#define _DSP_ASM_H
#ifdef CPU_COLDFIRE
#if defined(CPU_COLDFIRE) || defined(CPU_ARM)
#define DSP_HAVE_ASM_CROSSFEED
void apply_crossfeed(int32_t* src[], int count);
#endif