diff --git a/libcelt/bands.c b/libcelt/bands.c
index d414b66c627fc1b090d6c24196f8da6a668c8338..4bcb70ef5f2bae3ce255be21a09659996d566823 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 a1702e87d096b610b5817cd5dda57c1904e93bf8..7e67a7fbd683046d13e0c9fa845fa6d165f1cfe8 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;