diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-07-02 10:49:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-07-02 10:49:29 +0000 |
commit | 9a58234feaae8b387b7a7e41b643ec619534d26a (patch) | |
tree | eaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavcodec/cook.c | |
parent | 5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff) | |
download | ffmpeg-9a58234feaae8b387b7a7e41b643ec619534d26a.tar.gz |
Fix misspelled parameter names in Doxygen documentation.
This fixes one Doxygen warning each.
Originally committed as revision 23970 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cook.c')
-rw-r--r-- | libavcodec/cook.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index e406e6510e..b6f6f4a0c1 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -708,7 +708,7 @@ static void interpolate_float(COOKContext *q, float* buffer, * Apply transform window, overlap buffers. * * @param q pointer to the COOKContext - * @param inbuffer pointer to the mltcoefficients + * @param buffer1 pointer to the mltcoefficients * @param gains_ptr current and previous gains * @param previous_buffer pointer to the previous buffer to be used for overlapping */ @@ -877,7 +877,7 @@ static void joint_decode(COOKContext *q, COOKSubpacket *p, float* mlt_buffer1, * * @param q pointer to the COOKContext * @param inbuffer pointer to raw stream data - * @param gain_ptr array of current/prev gain pointers + * @param gains_ptr array of current/prev gain pointers */ static inline void @@ -923,7 +923,7 @@ saturate_output_float (COOKContext *q, int chan, int16_t *out) * * @param q pointer to the COOKContext * @param decode_buffer pointer to the mlt coefficients - * @param gain_ptr array of current/prev gain pointers + * @param gains array of current/prev gain pointers * @param previous_buffer pointer to the previous buffer to be used for overlapping * @param out pointer to the output buffer * @param chan 0: left or single channel, 1: right channel |