Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 14:49:29 +0400
committerDiego Biurrun <diego@biurrun.de>2010-07-02 14:49:29 +0400
commit9a58234feaae8b387b7a7e41b643ec619534d26a (patch)
treeeaba3937ef0f47cfc6e1fb471c6e17147fd1596a /libavcodec/atrac3.c
parent5298b070c294c211a8777c8c0d61c42bbfd4d1d3 (diff)
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/atrac3.c')
-rw-r--r--libavcodec/atrac3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c
index 5179c345cf..150f20171c 100644
--- a/libavcodec/atrac3.c
+++ b/libavcodec/atrac3.c
@@ -166,9 +166,9 @@ static void IMLT(float *pInput, float *pOutput, int odd_band)
/**
* Atrac 3 indata descrambling, only used for data coming from the rm container
*
- * @param in pointer to 8 bit array of indata
- * @param bits amount of bits
+ * @param inbuffer pointer to 8 bit array of indata
* @param out pointer to 8 bit array of outdata
+ * @param bytes amount of bytes
*/
static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){