diff options
author | Sven Gothel <[email protected]> | 2023-02-23 22:10:17 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-02-23 22:10:17 +0100 |
commit | 55a3e7e548bbc3333318ee55dbab39f016b8d5f6 (patch) | |
tree | a754d6d621532328c15095619180c0ef4556aabc /make/stub_includes/ffmpeg/v0400/libavutil/adler32.h | |
parent | dc48fb0f101dfefd3f4fb23f585d14de7fa9a6fe (diff) |
FFMPEGMediaPlayer: Replace old FFmpeg header w/ FFmpeg version 4.3, 5.1 and 6.0 (major version counts for binary compatibility)
Diffstat (limited to 'make/stub_includes/ffmpeg/v0400/libavutil/adler32.h')
-rw-r--r-- | make/stub_includes/ffmpeg/v0400/libavutil/adler32.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/make/stub_includes/ffmpeg/v0400/libavutil/adler32.h b/make/stub_includes/ffmpeg/v0400/libavutil/adler32.h new file mode 100644 index 000000000..a1f035b73 --- /dev/null +++ b/make/stub_includes/ffmpeg/v0400/libavutil/adler32.h @@ -0,0 +1,60 @@ +/* + * copyright (c) 2006 Mans Rullgard + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * 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 + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +/** + * @file + * @ingroup lavu_adler32 + * Public header for Adler-32 hash function implementation. + */ + +#ifndef AVUTIL_ADLER32_H +#define AVUTIL_ADLER32_H + +#include <stdint.h> +#include "attributes.h" + +/** + * @defgroup lavu_adler32 Adler-32 + * @ingroup lavu_hash + * Adler-32 hash function implementation. + * + * @{ + */ + +/** + * 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; + +/** + * @} + */ + +#endif /* AVUTIL_ADLER32_H */ |