diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:16:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:16:49 +0000 |
commit | 7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c (patch) | |
tree | e5a81591fb2bab9e11aba6ebadc4775ea65993db /libavutil/crc.c | |
parent | bfe3676feb5548993292b806de45a1cbc746c05f (diff) | |
download | ffmpeg-7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c.tar.gz |
spelling/grammar/consistency review part III
Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/crc.c')
-rw-r--r-- | libavutil/crc.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libavutil/crc.c b/libavutil/crc.c index f8bb170b4a..ed065d8d50 100644 --- a/libavutil/crc.c +++ b/libavutil/crc.c @@ -40,12 +40,13 @@ static AVCRC av_crc_table[AV_CRC_MAX][257]; #endif /** - * Inits a crc table. - * @param ctx must be an array of sizeof(AVCRC)*257 or sizeof(AVCRC)*1024 + * Initializes 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, lowest bit represents coefficient for highest exponent - * of corresponding polynomial (both for poly and actual CRC). - * If 0, you must swap the crc parameter and the result of av_crc + * @param le If 1, the lowest bit represents the coefficient for the highest + * exponent of the corresponding polynomial (both for poly and + * actual CRC). + * If 0, you must swap the CRC parameter and the result of av_crc * if you need the standard representation (can be simplified in * most cases to e.g. bswap16): * bswap_32(crc << (32-bits)) |