|
FFmpeg
|
Computes the Adler-32 checksum of a data stream. More...
Go to the source code of this file.
Macros | |
| #define | BASE 65521L /* largest prime smaller than 65536 */ |
| #define | DO1(buf) |
| #define | DO4(buf) |
| #define | DO16(buf) |
Functions | |
| AVAdler | av_adler32_update (AVAdler adler, const uint8_t *buf, size_t len) |
| Calculate the Adler32 checksum of a buffer. | |
Computes the Adler-32 checksum of a data stream.
This is a modified version based on adler32.c from the zlib library.
Definition in file adler32.c.
| #define BASE 65521L /* largest prime smaller than 65536 */ |
Definition at line 38 of file adler32.c.
Referenced by av_adler32_update().
| #define DO1 | ( | buf | ) |
Definition at line 40 of file adler32.c.
Referenced by av_adler32_update().
| #define DO4 | ( | buf | ) |
Definition at line 41 of file adler32.c.
Referenced by av_adler32_update().