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
21 #include "libavutil/timer.h"
22
23 #include <string.h>
24
25 #include "libavutil/log.h"
26 #include "libavutil/adler32.h"
27
28 #define LEN 7001
29
30 static volatile int checksum;
31
main(int argc,char ** argv)32 int main(int argc, char **argv)
33 {
34 int i;
35 uint8_t data[LEN];
36
37 av_log_set_level(AV_LOG_DEBUG);
38
39 for (i = 0; i < LEN; i++)
40 data[i] = ((i * i) >> 3) + 123 * i;
41
42 if (argc > 1 && !strcmp(argv[1], "-t")) {
43 for (i = 0; i < 1000; i++) {
44 START_TIMER;
45 checksum = av_adler32_update(1, data, LEN);
46 STOP_TIMER("adler");
47 }
48 } else {
49 checksum = av_adler32_update(1, data, LEN);
50 }
51
52 av_log(NULL, AV_LOG_DEBUG, "%X (expected 50E6E508)\n", checksum);
53 return checksum == 0x50e6e508 ? 0 : 1;
54 }
55 // LCOV_EXCL_STOP
56