rev |
line source |
jozee@2680
|
1 /*
|
jozee@2680
|
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
jozee@2680
|
3 *
|
jozee@2680
|
4 * This file is part of FFmpeg.
|
jozee@2680
|
5 *
|
jozee@2680
|
6 * FFmpeg is free software; you can redistribute it and/or
|
jozee@2680
|
7 * modify it under the terms of the GNU Lesser General Public
|
jozee@2680
|
8 * License as published by the Free Software Foundation; either
|
jozee@2680
|
9 * version 2.1 of the License, or (at your option) any later version.
|
jozee@2680
|
10 *
|
jozee@2680
|
11 * FFmpeg is distributed in the hope that it will be useful,
|
jozee@2680
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
jozee@2680
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
jozee@2680
|
14 * Lesser General Public License for more details.
|
jozee@2680
|
15 *
|
jozee@2680
|
16 * You should have received a copy of the GNU Lesser General Public
|
jozee@2680
|
17 * License along with FFmpeg; if not, write to the Free Software
|
jozee@2680
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
jozee@2680
|
19 */
|
jozee@2680
|
20
|
jozee@2680
|
21 #ifndef AVUTIL_AVUTIL_H
|
jozee@2680
|
22 #define AVUTIL_AVUTIL_H
|
jozee@2680
|
23
|
jozee@2680
|
24 /**
|
jozee@2680
|
25 * @file libavutil/avutil.h
|
jozee@2680
|
26 * external API header
|
jozee@2680
|
27 */
|
jozee@2680
|
28
|
jozee@2680
|
29
|
jozee@2680
|
30 #define AV_STRINGIFY(s) AV_TOSTRING(s)
|
jozee@2680
|
31 #define AV_TOSTRING(s) #s
|
jozee@2680
|
32
|
jozee@2680
|
33 #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)
|
jozee@2680
|
34 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
|
jozee@2680
|
35 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
|
jozee@2680
|
36
|
jozee@2680
|
37 #define LIBAVUTIL_VERSION_MAJOR 49
|
slaxemulator@5347
|
38 #define LIBAVUTIL_VERSION_MINOR 15
|
jozee@2680
|
39 #define LIBAVUTIL_VERSION_MICRO 0
|
jozee@2680
|
40
|
jozee@2680
|
41 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
jozee@2680
|
42 LIBAVUTIL_VERSION_MINOR, \
|
jozee@2680
|
43 LIBAVUTIL_VERSION_MICRO)
|
jozee@2680
|
44 #define LIBAVUTIL_VERSION AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \
|
jozee@2680
|
45 LIBAVUTIL_VERSION_MINOR, \
|
jozee@2680
|
46 LIBAVUTIL_VERSION_MICRO)
|
jozee@2680
|
47 #define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT
|
jozee@2680
|
48
|
jozee@2680
|
49 #define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
|
jozee@2680
|
50
|
jozee@2680
|
51 /**
|
jozee@2680
|
52 * Returns the LIBAVUTIL_VERSION_INT constant.
|
jozee@2680
|
53 */
|
jozee@2680
|
54 unsigned avutil_version(void);
|
jozee@2680
|
55
|
jozee@2680
|
56 #include "common.h"
|
jozee@2680
|
57 #include "mathematics.h"
|
jozee@2680
|
58 #include "rational.h"
|
jozee@2680
|
59 #include "intfloat_readwrite.h"
|
jozee@2680
|
60 #include "log.h"
|
slaxemulator@5347
|
61 #include "pixfmt.h"
|
jozee@2680
|
62
|
jozee@2680
|
63 #endif /* AVUTIL_AVUTIL_H */
|