Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjmvalin <jmvalin@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-04-08 10:26:36 +0400
committerjmvalin <jmvalin@0101bb08-14d6-0310-b084-bc0e0c8e3800>2002-04-08 10:26:36 +0400
commitb217ab52c502ee5657960e533e5f7d04b7bdf7c3 (patch)
treedb167f2ad0dc93ce1e9f60d1fa396b8b95f07267 /libspeex
parentf7e1127153d5daa3ea189c9fb801e37b35d5f3b1 (diff)
Removed useless stuff
git-svn-id: http://svn.xiph.org/trunk/speex@3224 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex')
-rw-r--r--libspeex/cb_search.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libspeex/cb_search.c b/libspeex/cb_search.c
index d91b3be..7b7e9e9 100644
--- a/libspeex/cb_search.c
+++ b/libspeex/cb_search.c
@@ -323,8 +323,6 @@ float *stack
int *ind;
float *gains;
float *sign;
- int max_gain_ind, vq_gain_ind;
- float max_gain, *Ee;
float *shape_cb;
int shape_cb_size, subvect_size, nb_subvect;
split_cb_params *params;
@@ -338,7 +336,6 @@ float *stack
ind = (int*)PUSH(stack, nb_subvect);
gains = PUSH(stack, nb_subvect);
sign = PUSH(stack, nb_subvect);
- Ee=PUSH(stack, nb_subvect);
for (i=0;i<nb_subvect;i++)
{
@@ -347,9 +344,6 @@ float *stack
sign[i]=-1;
else
sign[i]=1;
- Ee[i]=.001;
- for (j=0;j<subvect_size;j++)
- Ee[i]+=shape_cb[ind[i]*subvect_size+j]*shape_cb[ind[i]*subvect_size+j];
}
/*FIXME: Gain quantization changed, need to re-write that part */
@@ -363,5 +357,4 @@ float *stack
POP(stack);
POP(stack);
POP(stack);
- POP(stack);
}