FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
adler32.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 // LCOV_EXCL_START
20 #include <string.h>
21 
22 #include "libavutil/log.h"
23 #include "libavutil/timer.h"
24 #include "libavutil/adler32.h"
25 
26 #define LEN 7001
27 
28 static volatile int checksum;
29 
30 int main(int argc, char **argv)
31 {
32  int i;
33  uint8_t data[LEN];
34 
36 
37  for (i = 0; i < LEN; i++)
38  data[i] = ((i * i) >> 3) + 123 * i;
39 
40  if (argc > 1 && !strcmp(argv[1], "-t")) {
41  for (i = 0; i < 1000; i++) {
43  checksum = av_adler32_update(1, data, LEN);
44  STOP_TIMER("adler");
45  }
46  } else {
47  checksum = av_adler32_update(1, data, LEN);
48  }
49 
50  av_log(NULL, AV_LOG_DEBUG, "%X (expected 50E6E508)\n", checksum);
51  return checksum == 0x50e6e508 ? 0 : 1;
52 }
53 // LCOV_EXCL_STOP
#define NULL
Definition: coverity.c:32
#define LEN
Definition: adler32.c:26
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
void av_log_set_level(int level)
Set the log level.
Definition: log.c:391
uint8_t
unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, unsigned int len)
Calculate the Adler32 checksum of a buffer.
Definition: adler32.c:44
high precision timer, useful to profile code
#define av_log(a,...)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
static volatile int checksum
Definition: adler32.c:28
Public header for Adler-32 hash function implementation.
#define START_TIMER
Definition: timer.h:94
int main(int argc, char **argv)
Definition: adler32.c:30
#define STOP_TIMER(id)
Definition: timer.h:95