# HG changeset patch # User diego # Date 1278071357 0 # Node ID 18a757cdcba6926280efcd2b9c36280bdbc72b4a # Parent bb966549e0975a38b5831dedb33aea6d9d8b1287 Fix parameter name and position in av_crc_init Doxygen documentation. diff -r bb966549e097 -r 18a757cdcba6 crc.c --- a/crc.c Fri Jul 02 11:44:58 2010 +0000 +++ b/crc.c Fri Jul 02 11:49:17 2010 +0000 @@ -43,7 +43,6 @@ /** * 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 @@ * @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){