Commit 8c77510c authored by mhoffman's avatar mhoffman

float_t was a typo that compiled on macosx

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9703 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1a52e268
......@@ -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++) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment