Browse Source

float_t was a typo that compiled on macosx

Originally committed as revision 9703 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Marc Hoffman 18 years ago
parent
commit
f999b63c77
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/cook.c

+ 1
- 1
libavcodec/cook.c View 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++) {


Loading…
Cancel
Save