1
0
Fork 0
forked from len0rd/rockbox

Faster idct for ARMv6. Overall mpegplayer speedup is quite minimal though.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21392 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2009-06-20 14:05:15 +00:00
parent e7c4cd9076
commit f289b9f591
3 changed files with 342 additions and 1 deletions

View file

@ -9,7 +9,11 @@ idct_coldfire.S
motion_comp_coldfire_c.c
motion_comp_coldfire_s.S
#elif defined CPU_ARM
#if ARM_ARCH >= 6
idct_armv6.S
#else
idct_arm.S
#endif
motion_comp_arm_c.c
motion_comp_arm_s.S
#else /* other CPU or SIM */