From 41cea75095e6dcd17cff2f57c07553c0ec2a298e Mon Sep 17 00:00:00 2001 From: Magnus Holmgren Date: Wed, 28 Dec 2005 20:42:24 +0000 Subject: 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 --- apps/codecs/Tremor/registry.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/codecs/Tremor/registry.c') 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; extern vorbis_func_residue residue2_exportbundle; extern vorbis_func_mapping mapping0_exportbundle; -vorbis_func_floor *_floor_P[] = { +vorbis_func_floor *_floor_P[] ICONST_ATTR = { &floor0_exportbundle, &floor1_exportbundle, }; -vorbis_func_residue *_residue_P[] = { +vorbis_func_residue *_residue_P[] ICONST_ATTR = { &residue0_exportbundle, &residue1_exportbundle, &residue2_exportbundle, }; -vorbis_func_mapping *_mapping_P[] = { +vorbis_func_mapping *_mapping_P[] ICONST_ATTR = { &mapping0_exportbundle, }; -- cgit v1.2.3