diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-28 00:16:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-28 00:16:05 +0000 |
commit | 89c9ff504b29d03cf266aa3598ccb8d2cf1ddd13 (patch) | |
tree | 340147cb9f4382a838ae971bf991c2f42482077c /libavutil/crc.c | |
parent | d972e56cf21e9fa12922704da276d26111b5dbc1 (diff) | |
download | ffmpeg-89c9ff504b29d03cf266aa3598ccb8d2cf1ddd13.tar.gz |
spelling/grammar/consistency review part I
Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/crc.c')
-rw-r--r-- | libavutil/crc.c | 6 |
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 |