2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Mans Rullgard
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2016-08-02 02:18:44 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @ingroup lavu_adler32
|
|
|
|
* Public header for Adler-32 hash function implementation.
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVUTIL_ADLER32_H
|
|
|
|
#define AVUTIL_ADLER32_H
|
2006-07-13 21:29:01 +00:00
|
|
|
|
2021-03-18 03:33:28 +00:00
|
|
|
#include <stddef.h>
|
2007-06-16 22:59:13 +00:00
|
|
|
#include <stdint.h>
|
2010-03-09 17:39:19 +00:00
|
|
|
#include "attributes.h"
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2010-06-30 20:09:40 +00:00
|
|
|
/**
|
2016-08-02 02:18:44 +00:00
|
|
|
* @defgroup lavu_adler32 Adler-32
|
|
|
|
* @ingroup lavu_hash
|
|
|
|
* Adler-32 hash function implementation.
|
2013-11-02 22:03:15 +00:00
|
|
|
*
|
2013-06-14 08:42:55 +00:00
|
|
|
* @{
|
2013-06-16 00:29:08 +00:00
|
|
|
*/
|
|
|
|
|
2021-03-18 03:33:28 +00:00
|
|
|
typedef uint32_t AVAdler;
|
|
|
|
|
2013-06-16 00:29:08 +00:00
|
|
|
/**
|
2010-06-30 20:09:40 +00:00
|
|
|
* 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
|
|
|
|
*/
|
2021-03-18 03:33:28 +00:00
|
|
|
AVAdler av_adler32_update(AVAdler adler, const uint8_t *buf,
|
|
|
|
size_t len) av_pure;
|
2006-07-13 21:29:01 +00:00
|
|
|
|
2013-06-14 08:42:55 +00:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVUTIL_ADLER32_H */
|