Some preprocessor directives in this file didn't start with a # in column 1,
authorMike Smith <msmith@xiph.org>
Mon, 14 Feb 2005 23:03:43 +0000 (23:03 +0000)
committerMike Smith <msmith@xiph.org>
Mon, 14 Feb 2005 23:03:43 +0000 (23:03 +0000)
which some compilers (reported with apple gcc 3.3 on OS X) correctly reject.
Fixed by moving them into column 1.

svn path=/trunk/vorbis/; revision=8921

lib/envelope.c

index 0199a6d..fb82f35 100644 (file)
@@ -11,7 +11,7 @@
  ********************************************************************
 
  function: PCM data envelope analysis 
- last mod: $Id: envelope.c,v 1.54 2003/09/05 23:17:49 giles Exp $
+ last mod: $Id$
 
  ********************************************************************/
 
@@ -278,7 +278,7 @@ long _ve_envelope_search(vorbis_dsp_state *v){
       if(ve->mark[j/ve->searchstep]){
        if(j>centerW){
 
-         #if 0
+#if 0
          if(j>ve->curmark){
            float *marker=alloca(v->pcm_current*sizeof(*marker));
            int l,m;
@@ -361,13 +361,13 @@ void _ve_envelope_shift(envelope_lookup *e,long shift){
 
   memmove(e->mark,e->mark+smallshift,(smallsize-smallshift)*sizeof(*e->mark));
   
-  #if 0
+#if 0
   for(i=0;i<VE_BANDS*e->ch;i++)
     memmove(e->filter[i].markers,
            e->filter[i].markers+smallshift,
            (1024-smallshift)*sizeof(*(*e->filter).markers));
   totalshift+=shift;
-  #endif 
+#endif 
 
   e->current-=shift;
   if(e->curmark>=0)