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

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-24 06:33:25 +0400
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2009-10-24 06:33:25 +0400
commitf81edea0123ea0711f46e602afd56379d3f41de1 (patch)
tree2a4d4064e46f6c1f4fc0728dd9241d86ecc73aba
parent789fc14163d662af0ec6b6f4841451fa8147da14 (diff)
removing more unused code
-rw-r--r--libcelt/bands.c13
-rw-r--r--libcelt/entenc.c4
2 files changed, 8 insertions, 9 deletions
diff --git a/libcelt/bands.c b/libcelt/bands.c
index d414b66..4bcb70e 100644
--- a/libcelt/bands.c
+++ b/libcelt/bands.c
@@ -528,7 +528,6 @@ void quant_bands_stereo(const CELTMode *m, celt_norm *_X, const celt_ener *bandE
balance = 0;
for (i=0;i<m->nbEBands;i++)
{
- int c;
int tell;
int q1, q2;
celt_word16 n;
@@ -602,7 +601,7 @@ void quant_bands_stereo(const CELTMode *m, celt_norm *_X, const celt_ener *bandE
delta = (N-1)*(log2_frac(iside,BITRES+2)-log2_frac(imid,BITRES+2))>>2;
}
n = SHL16(celt_sqrt((eBands[i+1]-eBands[i])),11);
-
+#if 0
if (N==2)
{
int c2;
@@ -674,7 +673,9 @@ void quant_bands_stereo(const CELTMode *m, celt_norm *_X, const celt_ener *bandE
y2[0] = v[0];
y2[1] = v[1];
}
- } else {
+ } else
+#endif
+ {
mbits = (b-qalloc/2-delta)/2;
if (mbits > b-qalloc)
@@ -759,7 +760,6 @@ void unquant_bands_stereo(const CELTMode *m, celt_norm *_X, const celt_ener *ban
balance = 0;
for (i=0;i<m->nbEBands;i++)
{
- int c;
int tell;
int q1, q2;
celt_word16 n;
@@ -823,6 +823,7 @@ void unquant_bands_stereo(const CELTMode *m, celt_norm *_X, const celt_ener *ban
}
n = SHL16(celt_sqrt((eBands[i+1]-eBands[i])),11);
+#if 0
if (N==2)
{
int c2;
@@ -880,7 +881,9 @@ void unquant_bands_stereo(const CELTMode *m, celt_norm *_X, const celt_ener *ban
y2[0] = v[0];
y2[1] = v[1];
}
- } else {
+ } else
+#endif
+ {
mbits = (b-qalloc/2-delta)/2;
if (mbits > b-qalloc)
mbits = b-qalloc;
diff --git a/libcelt/entenc.c b/libcelt/entenc.c
index a1702e8..7e67a7f 100644
--- a/libcelt/entenc.c
+++ b/libcelt/entenc.c
@@ -51,10 +51,6 @@ void ec_byte_shrink(ec_byte_buffer *_b, long _size){
_b->storage=_size;
}
-void ec_byte_writetrunc(ec_byte_buffer *_b,long _bytes){
- _b->ptr=_b->buf+_bytes;
-}
-
void ec_byte_write1(ec_byte_buffer *_b,unsigned _value){
ptrdiff_t endbyte;
endbyte=_b->ptr-_b->buf;