diff crc.c @ 637:683a6dbdd2b2 libavutil

spelling/grammar/consistency review part III
author diego
date Wed, 28 Jan 2009 23:16:49 +0000
parents 8c48a1b999a3
children 63e3c82b92d9
line wrap: on
line diff
--- a/crc.c	Wed Jan 28 23:03:17 2009 +0000
+++ b/crc.c	Wed Jan 28 23:16:49 2009 +0000
@@ -40,12 +40,13 @@
 #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))