summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/SOURCES
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2009-06-20 14:05:15 +0000
committerJens Arnold <amiconn@rockbox.org>2009-06-20 14:05:15 +0000
commitf289b9f591746e5ff85835194bf7eae8ff088e6b (patch)
treefb6bb36f7167a71b6bf486fd45c0d30ec6ee6a9c /apps/plugins/mpegplayer/SOURCES
parente7c4cd90768cadcdc2f5202378b77c55513f4eef (diff)
downloadrockbox-f289b9f591746e5ff85835194bf7eae8ff088e6b.tar.gz
rockbox-f289b9f591746e5ff85835194bf7eae8ff088e6b.zip
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
Diffstat (limited to 'apps/plugins/mpegplayer/SOURCES')
-rw-r--r--apps/plugins/mpegplayer/SOURCES4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/mpegplayer/SOURCES b/apps/plugins/mpegplayer/SOURCES
index 5b3360cc5a..5ca0fcd86e 100644
--- a/apps/plugins/mpegplayer/SOURCES
+++ b/apps/plugins/mpegplayer/SOURCES
@@ -9,7 +9,11 @@ idct_coldfire.S
9motion_comp_coldfire_c.c 9motion_comp_coldfire_c.c
10motion_comp_coldfire_s.S 10motion_comp_coldfire_s.S
11#elif defined CPU_ARM 11#elif defined CPU_ARM
12#if ARM_ARCH >= 6
13idct_armv6.S
14#else
12idct_arm.S 15idct_arm.S
16#endif
13motion_comp_arm_c.c 17motion_comp_arm_c.c
14motion_comp_arm_s.S 18motion_comp_arm_s.S
15#else /* other CPU or SIM */ 19#else /* other CPU or SIM */