summaryrefslogtreecommitdiff
path: root/libavutil/crc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-07-02 11:49:17 +0000
committerDiego Biurrun <diego@biurrun.de>2010-07-02 11:49:17 +0000
commite669590a0abfd3fe868e7c9129e682533ffa852b (patch)
tree334049dbd28df12397fb9bc3908c8505c7c6167a /libavutil/crc.c
parent8a4d7a30136c52f3595b80156f6baa9c0f452fcf (diff)
Fix parameter name and position in av_crc_init Doxygen documentation.
Originally committed as revision 23981 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/crc.c')
-rw-r--r--libavutil/crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/crc.c b/libavutil/crc.c
index 727b47fd6c..54133e70e1 100644
--- a/libavutil/crc.c
+++ b/libavutil/crc.c
@@ -43,7 +43,6 @@ static AVCRC av_crc_table[AV_CRC_MAX][257];
/**
* Initialize a CRC table.
* @param ctx must be an array of size sizeof(AVCRC)*257 or sizeof(AVCRC)*1024
- * @param cts_size size of ctx in bytes
* @param le If 1, the lowest bit represents the coefficient for the highest
* exponent of the corresponding polynomial (both for poly and
* actual CRC).
@@ -54,6 +53,7 @@ static AVCRC av_crc_table[AV_CRC_MAX][257];
* @param bits number of bits for the CRC
* @param poly generator polynomial without the x**bits coefficient, in the
* representation as specified by le
+ * @param ctx_size size of ctx in bytes
* @return <0 on failure
*/
int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){