]> git.sesse.net Git - ffmpeg/blob - libavutil/avutil.h
generic crc calculation code
[ffmpeg] / libavutil / avutil.h
1 #ifndef AVUTIL_H
2 #define AVUTIL_H
3
4 /**
5  * @file avutil.h
6  * external api header.
7  */
8
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 #define AV_STRINGIFY(s)         AV_TOSTRING(s)
15 #define AV_TOSTRING(s) #s
16
17 #define LIBAVUTIL_VERSION_INT   ((49<<16)+(0<<8)+0)
18 #define LIBAVUTIL_VERSION       49.0.0
19 #define LIBAVUTIL_BUILD         LIBAVUTIL_VERSION_INT
20
21 #define LIBAVUTIL_IDENT         "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
22
23
24 #include "common.h"
25 #include "mathematics.h"
26 #include "rational.h"
27 #include "integer.h"
28 #include "intfloat_readwrite.h"
29
30 #ifdef __cplusplus
31 }
32 #endif
33
34 #endif /* AVUTIL_H */