Remove a couple of unused variables.
authorRalph Giles <giles@xiph.org>
Fri, 5 Sep 2003 23:17:49 +0000 (23:17 +0000)
committerRalph Giles <giles@xiph.org>
Fri, 5 Sep 2003 23:17:49 +0000 (23:17 +0000)
svn path=/trunk/vorbis/; revision=5314

lib/envelope.c
lib/floor0.c

index 21dcbee..0199a6d 100644 (file)
@@ -11,7 +11,7 @@
  ********************************************************************
 
  function: PCM data envelope analysis 
- last mod: $Id: envelope.c,v 1.53 2002/10/11 11:14:41 xiphmont Exp $
+ last mod: $Id: envelope.c,v 1.54 2003/09/05 23:17:49 giles Exp $
 
  ********************************************************************/
 
@@ -358,7 +358,6 @@ void _ve_envelope_shift(envelope_lookup *e,long shift){
   int smallsize=e->current/e->searchstep+VE_POST; /* adjust for placing marks
                                                     ahead of ve->current */
   int smallshift=shift/e->searchstep;
-  int i;
 
   memmove(e->mark,e->mark+smallshift,(smallsize-smallshift)*sizeof(*e->mark));
   
index cfa8487..4577cbd 100644 (file)
@@ -11,7 +11,7 @@
  ********************************************************************
 
  function: floor backend 0 implementation
- last mod: $Id: floor0.c,v 1.54 2003/03/07 09:13:30 xiphmont Exp $
+ last mod: $Id: floor0.c,v 1.55 2003/09/05 23:17:49 giles Exp $
 
  ********************************************************************/
 
@@ -143,7 +143,6 @@ static void floor0_map_lazy_init(vorbis_block      *vb,
 
 static vorbis_look_floor *floor0_look(vorbis_dsp_state *vd,
                                      vorbis_info_floor *i){
-  int j;
   vorbis_info_floor0 *info=(vorbis_info_floor0 *)i;
   vorbis_look_floor0 *look=_ogg_calloc(1,sizeof(*look));
   look->m=info->order;