shithub: opus

Download patch

ref: f81edea0123ea0711f46e602afd56379d3f41de1
parent: 789fc14163d662af0ec6b6f4841451fa8147da14
author: Jean-Marc Valin <[email protected]>
date: Fri Oct 23 18:33:25 EDT 2009

removing more unused code

--- a/libcelt/bands.c
+++ b/libcelt/bands.c
@@ -528,7 +528,6 @@
    balance = 0;
    for (i=0;i<m->nbEBands;i++)
    {
-      int c;
       int tell;
       int q1, q2;
       celt_word16 n;
@@ -602,7 +601,7 @@
          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 @@
             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 @@
    balance = 0;
    for (i=0;i<m->nbEBands;i++)
    {
-      int c;
       int tell;
       int q1, q2;
       celt_word16 n;
@@ -823,6 +823,7 @@
       }
       n = SHL16(celt_sqrt((eBands[i+1]-eBands[i])),11);
 
+#if 0
       if (N==2)
       {
          int c2;
@@ -880,7 +881,9 @@
             y2[0] = v[0];
             y2[1] = v[1];
          }
-      } else {
+      } else
+#endif
+      {
          mbits = (b-qalloc/2-delta)/2;
          if (mbits > b-qalloc)
             mbits = b-qalloc;
--- a/libcelt/entenc.c
+++ b/libcelt/entenc.c
@@ -51,10 +51,6 @@
    _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;