summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/decode.c
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/decode.c
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/decode.c')
-rw-r--r--apps/plugins/mpegplayer/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/decode.c b/apps/plugins/mpegplayer/decode.c
index a19b929bef..91251206e9 100644
--- a/apps/plugins/mpegplayer/decode.c
+++ b/apps/plugins/mpegplayer/decode.c
@@ -35,7 +35,7 @@
35 35
36#define BUFFER_SIZE (1194 * 1024) 36#define BUFFER_SIZE (1194 * 1024)
37 37
38#ifdef CPU_COLDFIRE 38#if defined(CPU_COLDFIRE) || (defined(CPU_ARM) && ARM_ARCH >= 6)
39/* twice as large as on other targets because coldfire uses 39/* twice as large as on other targets because coldfire uses
40 * a secondary, transposed buffer for optimisation */ 40 * a secondary, transposed buffer for optimisation */
41static int16_t static_dct_block[128] IBSS_ATTR ATTR_ALIGN(16); 41static int16_t static_dct_block[128] IBSS_ATTR ATTR_ALIGN(16);