summaryrefslogtreecommitdiff
path: root/libavutil/crc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/crc.c')
-rw-r--r--libavutil/crc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/crc.c b/libavutil/crc.c
index 8b8a90e6a5..f8bb170b4a 100644
--- a/libavutil/crc.c
+++ b/libavutil/crc.c
@@ -86,7 +86,7 @@ int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){
}
/**
- * Get an initialized standard CRC table.
+ * Gets an initialized standard CRC table.
* @param crc_id ID of a standard CRC
* @return a pointer to the CRC table or NULL on failure
*/
@@ -104,8 +104,8 @@ const AVCRC *av_crc_get_table(AVCRCId crc_id){
}
/**
- * Calculate the CRC of a block
- * @param crc CRC of previous blocks if any or initial value for CRC.
+ * Calculates the CRC of a block.
+ * @param crc CRC of previous blocks if any or initial value for CRC
* @return CRC updated with the data from the given block
*
* @see av_crc_init() "le" parameter