Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2013-11-03 02:03:15 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-11-03 03:58:31 +0400
commit624672fcce84c41e9e2fe9ff3ec3fd56140b175f (patch)
treed40bd3f11ed0cf04adfe108bad2b28ed9fcebc3e /libavutil/adler32.c
parent517afd72c6772f69671d913f03f4be89dd1dd665 (diff)
avutil/adler32: add Doxy group
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/adler32.c')
-rw-r--r--libavutil/adler32.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libavutil/adler32.c b/libavutil/adler32.c
index bc9b9a7e5a..579d022978 100644
--- a/libavutil/adler32.c
+++ b/libavutil/adler32.c
@@ -21,6 +21,15 @@
* 3. This notice may not be removed or altered from any source distribution.
*/
+/**
+ * @file
+ * Computes the Adler-32 checksum of a data stream
+ *
+ * This is a modified version based on adler32.c from the zlib library.
+ * @author Mark Adler
+ * @ingroup lavu_adler32
+ */
+
#include "config.h"
#include "adler32.h"
#include "common.h"