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

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libcelt/bands.c')
-rw-r--r--libcelt/bands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcelt/bands.c b/libcelt/bands.c
index 6a32137..131692f 100644
--- a/libcelt/bands.c
+++ b/libcelt/bands.c
@@ -155,7 +155,7 @@ void quant_bands(const CELTMode *m, float *X, float *P, ec_enc *enc)
for (i=0;i<m->nbEBands;i++)
{
- int q, id;
+ int q;
q = m->nbPulses[i];
if (q>0) {
float n = sqrt(B*(eBands[i+1]-eBands[i]));
@@ -185,7 +185,7 @@ void unquant_bands(const CELTMode *m, float *X, float *P, ec_dec *dec)
for (i=0;i<m->nbEBands;i++)
{
- int q, id;
+ int q;
q = m->nbPulses[i];
if (q>0) {
float n = sqrt(B*(eBands[i+1]-eBands[i]));