summaryrefslogtreecommitdiff
path: root/apps/codecs/Tremor/registry.c
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2005-12-28 20:42:24 +0000
committerMagnus Holmgren <magnushol@gmail.com>2005-12-28 20:42:24 +0000
commit41cea75095e6dcd17cff2f57c07553c0ec2a298e (patch)
tree4acd38bc18a591b53526ef4e9948b360e69031c7 /apps/codecs/Tremor/registry.c
parent074999ded3b7f41ef25167b06b0c618306ed9d5e (diff)
downloadrockbox-41cea75095e6dcd17cff2f57c07553c0ec2a298e.tar.gz
rockbox-41cea75095e6dcd17cff2f57c07553c0ec2a298e.zip
Vorbis optimizations from Brandon Low (part of patch 1387611). Reduces cpu boost ratio on a test track by about 6 percentage points. Also fixes broken simulator playback caused by my previous Tremor commit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8291 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/Tremor/registry.c')
-rw-r--r--apps/codecs/Tremor/registry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/Tremor/registry.c b/apps/codecs/Tremor/registry.c
index 0882309b32..b1592628a1 100644
--- a/apps/codecs/Tremor/registry.c
+++ b/apps/codecs/Tremor/registry.c
@@ -31,18 +31,18 @@ extern vorbis_func_residue residue1_exportbundle;
31extern vorbis_func_residue residue2_exportbundle; 31extern vorbis_func_residue residue2_exportbundle;
32extern vorbis_func_mapping mapping0_exportbundle; 32extern vorbis_func_mapping mapping0_exportbundle;
33 33
34vorbis_func_floor *_floor_P[] = { 34vorbis_func_floor *_floor_P[] ICONST_ATTR = {
35 &floor0_exportbundle, 35 &floor0_exportbundle,
36 &floor1_exportbundle, 36 &floor1_exportbundle,
37}; 37};
38 38
39vorbis_func_residue *_residue_P[] = { 39vorbis_func_residue *_residue_P[] ICONST_ATTR = {
40 &residue0_exportbundle, 40 &residue0_exportbundle,
41 &residue1_exportbundle, 41 &residue1_exportbundle,
42 &residue2_exportbundle, 42 &residue2_exportbundle,
43}; 43};
44 44
45vorbis_func_mapping *_mapping_P[] = { 45vorbis_func_mapping *_mapping_P[] ICONST_ATTR = {
46 &mapping0_exportbundle, 46 &mapping0_exportbundle,
47}; 47};
48 48