Ifdef out an unused variable.
authorRalph Giles <giles@xiph.org>
Fri, 2 Sep 2011 02:49:00 +0000 (02:49 +0000)
committerRalph Giles <giles@xiph.org>
Fri, 2 Sep 2011 02:49:00 +0000 (02:49 +0000)
Corrects a warning on Apple gcc 4.2.

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

lib/psy.c

index 8c6918c..1ca809e 100644 (file)
--- a/lib/psy.c
+++ b/lib/psy.c
@@ -1020,7 +1020,9 @@ void _vp_couple_quantize_normalize(int blobno,
   int limit = g->coupling_pointlimit[p->vi->blockflag][blobno];
   float prepoint=stereo_threshholds[g->coupling_prepointamp[blobno]];
   float postpoint=stereo_threshholds[g->coupling_postpointamp[blobno]];
+#if 0
   float de=0.1*p->m_val; /* a blend of the AoTuV M2 and M3 code here and below */
+#endif
 
   /* mdct is our raw mdct output, floor not removed. */
   /* inout passes in the ifloor, passes back quantized result */