diff options
author | Marc Hoffman <mmhoffm@gmail.com> | 2007-07-16 14:45:54 +0000 |
---|---|---|
committer | Marc Hoffman <mmhoffm@gmail.com> | 2007-07-16 14:45:54 +0000 |
commit | f999b63c77bd39ee0b56f14ceced478108976db1 (patch) | |
tree | 4fa1f4d00e598a9b6957059f1237ca23593e4f6c /libavcodec/cook.c | |
parent | dae92b62a3178e786ad0c2b593cfb1be37ee812b (diff) | |
download | ffmpeg-f999b63c77bd39ee0b56f14ceced478108976db1.tar.gz |
float_t was a typo that compiled on macosx
Originally committed as revision 9703 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cook.c')
-rw-r--r-- | libavcodec/cook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index a6a7360f35..293dc426d9 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -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++) { |