diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2010-12-02 22:33:47 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2010-12-02 22:33:47 +0000 |
| commit | 1d425bf1e6c0346db02f03be496ecef749b49c22 (patch) | |
| tree | 16616903fa455b70917768bbdb2939a58f876425 /firmware/export | |
| parent | 1633d3f4790714f4d968764d0c3ce10122a3cb5e (diff) | |
| download | rockbox-1d425bf1e6c0346db02f03be496ecef749b49c22.zip rockbox-1d425bf1e6c0346db02f03be496ecef749b49c22.tar.gz rockbox-1d425bf1e6c0346db02f03be496ecef749b49c22.tar.bz2 rockbox-1d425bf1e6c0346db02f03be496ecef749b49c22.tar.xz | |
Enable ARM ASM optimzations on android. Speedup in codecs ranges from 20% to 150%. Most codecs now need well below 30MHz.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28727 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 540eff0..6b64137 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -496,7 +496,8 @@ Lyre prototype 1 */ #define ARM_ARCH 6 /* ARMv6 */ #elif defined(CPU_TCC77X) || defined(CPU_TCC780X) || (CONFIG_CPU == DM320) \ - || (CONFIG_CPU == AT91SAM9260) || (CONFIG_CPU == AS3525v2) + || (CONFIG_CPU == AT91SAM9260) || (CONFIG_CPU == AS3525v2) \ + || (CONFIG_PLATFORM & PLATFORM_ANDROID) #define CPU_ARM #define ARM_ARCH 5 /* ARMv5 */ |