comparison avutil.h @ 0:ee8f44bb7c4d libavutil

libavutil: Utility code from libavcodec moved to a separate library.
author al
date Mon, 01 Aug 2005 20:07:05 +0000
parents
children aedb6bd881b9
comparison
equal deleted inserted replaced
-1:000000000000 0:ee8f44bb7c4d
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 */