summaryrefslogtreecommitdiffstats
path: root/apps/codecs/libspeex/cb_search.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-01 11:42:41 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-05-01 11:42:41 +0000
commite75018ad66658c968b50767847ea1ed5408897ba (patch)
tree83096f55f8d89521e8938ac355722579abff72df /apps/codecs/libspeex/cb_search.c
parent5e57edf2632eb69b0749a9af984fa399a487bec4 (diff)
downloadrockbox-e75018ad66658c968b50767847ea1ed5408897ba.tar.gz
rockbox-e75018ad66658c968b50767847ea1ed5408897ba.zip
Fix several 'variable set but not used' warnings reported from GCC 4.6.0.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29805 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/cb_search.c')
-rw-r--r--apps/codecs/libspeex/cb_search.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/libspeex/cb_search.c b/apps/codecs/libspeex/cb_search.c
index f9ff0a6784..35fe3a2f67 100644
--- a/apps/codecs/libspeex/cb_search.c
+++ b/apps/codecs/libspeex/cb_search.c
@@ -529,14 +529,13 @@ spx_int32_t *seed
VARDECL(int *ind);
VARDECL(int *signs);
const signed char *shape_cb;
- int shape_cb_size, subvect_size, nb_subvect;
+ int subvect_size, nb_subvect;
const split_cb_params *params;
int have_sign;
params = (const split_cb_params *) par;
subvect_size = params->subvect_size;
nb_subvect = params->nb_subvect;
- shape_cb_size = 1<<params->shape_bits;
shape_cb = params->shape_cb;
have_sign = params->have_sign;