float_t was a typo that compiled on macosx
authorMarc Hoffman <mmhoffm@gmail.com>
Mon, 16 Jul 2007 14:45:54 +0000 (14:45 +0000)
committerMarc Hoffman <mmhoffm@gmail.com>
Mon, 16 Jul 2007 14:45:54 +0000 (14:45 +0000)
Originally committed as revision 9703 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/cook.c

index a6a7360..293dc42 100644 (file)
@@ -901,7 +901,7 @@ static void
 saturate_output_float (COOKContext *q, int chan, int16_t *out)
 {
     int j;
-    float_t *output = q->mono_mdct_output + q->samples_per_channel;
+    float *output = q->mono_mdct_output + q->samples_per_channel;
     /* Clip and convert floats to 16 bits.
      */
     for (j = 0; j < q->samples_per_channel; j++) {