| 
    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) { s1 += *buf++; s2 += s1; } | 
| #define | DO4(buf) DO1(buf); DO1(buf); DO1(buf); DO1(buf); | 
| #define | DO16(buf) DO4(buf); DO4(buf); DO4(buf); DO4(buf); | 
Functions | |
| unsigned long | av_adler32_update (unsigned long adler, const uint8_t *buf, unsigned int len) | 
| Calculate the Adler32 checksum of a buffer.  More... | |
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().
Definition at line 40 of file adler32.c.
Referenced by av_adler32_update().
Definition at line 41 of file adler32.c.
Referenced by av_adler32_update().
 1.8.6