summaryrefslogtreecommitdiff
path: root/apps/codecs/lib
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2010-01-30 02:20:54 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2010-01-30 02:20:54 +0000
commit436f4d3a204e8183d32d8c47975e6a294be1c0fa (patch)
tree179e01ffbcbf216526ff008f1fd6453884768634 /apps/codecs/lib
parent423927310882669e70f318688945bd4e51a847f7 (diff)
downloadrockbox-436f4d3a204e8183d32d8c47975e6a294be1c0fa.tar.gz
rockbox-436f4d3a204e8183d32d8c47975e6a294be1c0fa.zip
Improve libdemac SATURATE slightly on ARMv4/5, move filter buffers and code out of IRAM for sizes that aren't near realtime and extend udiv32_arm reciprocal table.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24376 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib')
-rw-r--r--apps/codecs/lib/udiv32_arm.S10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/codecs/lib/udiv32_arm.S b/apps/codecs/lib/udiv32_arm.S
index 33ab7a43a5..8efc92c2e6 100644
--- a/apps/codecs/lib/udiv32_arm.S
+++ b/apps/codecs/lib/udiv32_arm.S
@@ -90,18 +90,18 @@
90 90
91#ifdef CPU_PP 91#ifdef CPU_PP
92#if CONFIG_CPU == PP5020 92#if CONFIG_CPU == PP5020
93.set recip_max, 5952 93.set recip_max, 8384
94#elif CONFIG_CPU == PP5002 94#elif CONFIG_CPU == PP5002
95.set recip_max, 1472 95.set recip_max, 4992
96#else 96#else
97.set recip_max, 14208 97.set recip_max, 16384
98#endif 98#endif
99#elif CONFIG_CPU == AS3525 99#elif CONFIG_CPU == AS3525
100.set recip_max, 42752 100.set recip_max, 42752
101#elif CONFIG_CPU == S5L8701 101#elif CONFIG_CPU == S5L8701
102.set recip_max, 9600 102.set recip_max, 13184
103#elif CONFIG_CPU == S5L8700 103#elif CONFIG_CPU == S5L8700
104.set recip_max, 5504 104.set recip_max, 9088
105#endif 105#endif
106 106
107udiv32_arm: 107udiv32_arm: