summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-02 21:13:39 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-02 21:13:39 +0000
commitc355122cce921cf6fe28772388d870d8dbde0f89 (patch)
treede6ad1cc187217375dfcfaf86345c90babe76627
parent560d89130f321f00b8c3b84f374b4ae04d3b2577 (diff)
downloadrockbox-c355122cce921cf6fe28772388d870d8dbde0f89.tar.gz
rockbox-c355122cce921cf6fe28772388d870d8dbde0f89.zip
Minor optimization of mpc codec via moving dewindowing asm to icode section for S5L870x.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28454 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libmusepack/synth_filter_arm.S5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/codecs/libmusepack/synth_filter_arm.S b/apps/codecs/libmusepack/synth_filter_arm.S
index 5bdae93561..b44e029a43 100644
--- a/apps/codecs/libmusepack/synth_filter_arm.S
+++ b/apps/codecs/libmusepack/synth_filter_arm.S
@@ -21,7 +21,12 @@
21 21
22#include "config.h" 22#include "config.h"
23 23
24#if defined(CPU_S5L870X)
25 /* Moving this asm routine to iram is (little) faster on S5L870x. */
26 .section .icode, "ax", %progbits
27#else
24 .section .text, "ax", %progbits 28 .section .text, "ax", %progbits
29#endif
25 30
26/**************************************************************************** 31/****************************************************************************
27 * void mpc_decoder_windowing_D(...) 32 * void mpc_decoder_windowing_D(...)