diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-11-14 01:40:25 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-11-16 10:38:23 +0100 |
commit | 8ff0f7763d98d2a2c2d7f13eb0b59def5d588c27 (patch) | |
tree | 88c2bafeaacd913067e3802b7d96bc61881aaa21 /libavutil | |
parent | 566de8cde29d999fd05c477158adbd580b8522c7 (diff) | |
download | ffmpeg-8ff0f7763d98d2a2c2d7f13eb0b59def5d588c27.tar.gz |
crc: av_crc() parameter names should match between .c, .h and doxygen
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/crc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/crc.h b/libavutil/crc.h index 142a5b5e8f..0540619d20 100644 --- a/libavutil/crc.h +++ b/libavutil/crc.h @@ -68,6 +68,7 @@ const AVCRC *av_crc_get_table(AVCRCId crc_id); * * @see av_crc_init() "le" parameter */ -uint32_t av_crc(const AVCRC *ctx, uint32_t start_crc, const uint8_t *buffer, size_t length) av_pure; +uint32_t av_crc(const AVCRC *ctx, uint32_t crc, + const uint8_t *buffer, size_t length) av_pure; #endif /* AVUTIL_CRC_H */ |