OLD | NEW |
1 /* | 1 /* |
2 * copyright (c) 2006 Mans Rullgard | 2 * copyright (c) 2006 Mans Rullgard |
3 * | 3 * |
4 * This file is part of FFmpeg. | 4 * This file is part of FFmpeg. |
5 * | 5 * |
6 * FFmpeg is free software; you can redistribute it and/or | 6 * FFmpeg is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Lesser General Public | 7 * modify it under the terms of the GNU Lesser General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2.1 of the License, or (at your option) any later version. | 9 * version 2.1 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 10 matching lines...) Expand all Loading... |
21 #ifndef AVUTIL_ADLER32_H | 21 #ifndef AVUTIL_ADLER32_H |
22 #define AVUTIL_ADLER32_H | 22 #define AVUTIL_ADLER32_H |
23 | 23 |
24 #include <stdint.h> | 24 #include <stdint.h> |
25 #include "common.h" | 25 #include "common.h" |
26 | 26 |
27 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, | 27 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, |
28 unsigned int len) av_pure; | 28 unsigned int len) av_pure; |
29 | 29 |
30 #endif /* AVUTIL_ADLER32_H */ | 30 #endif /* AVUTIL_ADLER32_H */ |
OLD | NEW |