From 8ff0f7763d98d2a2c2d7f13eb0b59def5d588c27 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 14 Nov 2012 01:40:25 +0100 Subject: crc: av_crc() parameter names should match between .c, .h and doxygen --- libavutil/crc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 */ -- cgit v1.2.3