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

@ -35,7 +35,7 @@
#define BUFFER_SIZE (1194 * 1024)
#ifdef CPU_COLDFIRE
#if defined(CPU_COLDFIRE) || (defined(CPU_ARM) && ARM_ARCH >= 6)
/* twice as large as on other targets because coldfire uses
* a secondary, transposed buffer for optimisation */
static int16_t static_dct_block[128] IBSS_ATTR ATTR_ALIGN(16);