[FFmpeg-cvslog] crc: av_crc() parameter names should match between .c, .h and doxygen
Diego Biurrun
git at videolan.org
Fri Nov 16 13:36:40 CET 2012
ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Wed Nov 14 01:40:25 2012 +0100| [8ff0f7763d98d2a2c2d7f13eb0b59def5d588c27] | committer: Diego Biurrun
crc: av_crc() parameter names should match between .c, .h and doxygen
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8ff0f7763d98d2a2c2d7f13eb0b59def5d588c27
---
libavutil/crc.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavutil/crc.h b/libavutil/crc.h
index 142a5b5..0540619 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 */
More information about the ffmpeg-cvslog
mailing list