summaryrefslogtreecommitdiff
path: root/src/libspeex/cb_search.c
diff options
context:
space:
mode:
authorThilo Schulz <arny@ats.s.bawue.de>2011-07-29 12:27:00 +0000
committerTim Angus <tim@ngus.net>2013-01-10 22:36:34 +0000
commite7c06719510940898e1f7f8215f4137202611308 (patch)
tree0aec0bf91daa568d8cb4a1c412037ca26b2f92a6 /src/libspeex/cb_search.c
parent76544bcec46127587d183a90e5ff817a71e1f139 (diff)
Bug 5094 - Code cleanup, patch by Zack Middleton and DevHC. Fixes unused-but-set gcc warnings
Diffstat (limited to 'src/libspeex/cb_search.c')
-rw-r--r--src/libspeex/cb_search.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libspeex/cb_search.c b/src/libspeex/cb_search.c
index 63f4c6a4..39ad50c2 100644
--- a/src/libspeex/cb_search.c
+++ b/src/libspeex/cb_search.c
@@ -524,14 +524,15 @@ spx_int32_t *seed
VARDECL(int *ind);
VARDECL(int *signs);
const signed char *shape_cb;
- int shape_cb_size, subvect_size, nb_subvect;
+ //int shape_cb_size;
+ 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_size = 1<<params->shape_bits;
shape_cb = params->shape_cb;
have_sign = params->have_sign;