changeset 959:082e51609a90 libavutil

adler32: add API documentation
author mru
date Wed, 30 Jun 2010 20:09:40 +0000
parents f789d66969a4
children 0d9ab0329d9f
files adler32.h
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/adler32.h	Wed Jun 30 20:09:32 2010 +0000
+++ b/adler32.h	Wed Jun 30 20:09:40 2010 +0000
@@ -24,6 +24,18 @@
 #include <stdint.h>
 #include "attributes.h"
 
+/**
+ * Calculate the Adler32 checksum of a buffer.
+ *
+ * Passing the return value to a subsequent av_adler32_update() call
+ * allows the checksum of multiple buffers to be calculated as though
+ * they were concatenated.
+ *
+ * @param adler initial checksum value
+ * @param buf   pointer to input buffer
+ * @param len   size of input buffer
+ * @return      updated checksum
+ */
 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
                                 unsigned int len) av_pure;