Commit | Line | Data |
---|---|---|
3dd851c4 AK |
1 | /* |
2 | * | |
6001dad6 | 3 | * This file is part of Libav. |
3dd851c4 | 4 | * |
6001dad6 | 5 | * Libav is free software; you can redistribute it and/or |
3dd851c4 AK |
6 | * modify it under the terms of the GNU Lesser General Public |
7 | * License as published by the Free Software Foundation; either | |
8 | * version 2.1 of the License, or (at your option) any later version. | |
9 | * | |
6001dad6 | 10 | * Libav is distributed in the hope that it will be useful, |
3dd851c4 AK |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | * Lesser General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU Lesser General Public | |
6001dad6 | 16 | * License along with Libav; if not, write to the Free Software |
3dd851c4 AK |
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
18 | */ | |
19 | ||
20 | #ifndef AVCODEC_VERSION_H | |
21 | #define AVCODEC_VERSION_H | |
22 | ||
139f3ac4 | 23 | #define LIBAVCODEC_VERSION_MAJOR 53 |
27ed027b | 24 | #define LIBAVCODEC_VERSION_MINOR 35 |
82390f57 | 25 | #define LIBAVCODEC_VERSION_MICRO 0 |
3dd851c4 AK |
26 | |
27 | #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ | |
28 | LIBAVCODEC_VERSION_MINOR, \ | |
29 | LIBAVCODEC_VERSION_MICRO) | |
30 | #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \ | |
31 | LIBAVCODEC_VERSION_MINOR, \ | |
32 | LIBAVCODEC_VERSION_MICRO) | |
33 | #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT | |
34 | ||
35 | #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) | |
36 | ||
37 | /** | |
38 | * Those FF_API_* defines are not part of public API. | |
39 | * They may change, break or disappear at any time. | |
40 | */ | |
41 | #ifndef FF_API_PALETTE_CONTROL | |
42 | #define FF_API_PALETTE_CONTROL (LIBAVCODEC_VERSION_MAJOR < 54) | |
43 | #endif | |
3dd851c4 | 44 | #ifndef FF_API_OLD_SAMPLE_FMT |
d6ead39e | 45 | #define FF_API_OLD_SAMPLE_FMT (LIBAVCODEC_VERSION_MAJOR < 54) |
3dd851c4 AK |
46 | #endif |
47 | #ifndef FF_API_OLD_AUDIOCONVERT | |
d6ead39e | 48 | #define FF_API_OLD_AUDIOCONVERT (LIBAVCODEC_VERSION_MAJOR < 54) |
3dd851c4 | 49 | #endif |
4e3945fd AK |
50 | #ifndef FF_API_ANTIALIAS_ALGO |
51 | #define FF_API_ANTIALIAS_ALGO (LIBAVCODEC_VERSION_MAJOR < 54) | |
52 | #endif | |
9f5ddd1e | 53 | #ifndef FF_API_REQUEST_CHANNELS |
c7767327 | 54 | #define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 54) |
9f5ddd1e | 55 | #endif |
095290f9 AK |
56 | #ifndef FF_API_OPT_H |
57 | #define FF_API_OPT_H (LIBAVCODEC_VERSION_MAJOR < 54) | |
58 | #endif | |
65af48b5 AK |
59 | #ifndef FF_API_THREAD_INIT |
60 | #define FF_API_THREAD_INIT (LIBAVCODEC_VERSION_MAJOR < 54) | |
61 | #endif | |
bebe72f4 SS |
62 | #ifndef FF_API_OLD_FF_PICT_TYPES |
63 | #define FF_API_OLD_FF_PICT_TYPES (LIBAVCODEC_VERSION_MAJOR < 54) | |
64 | #endif | |
188dea1d AK |
65 | #ifndef FF_API_FLAC_GLOBAL_OPTS |
66 | #define FF_API_FLAC_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) | |
67 | #endif | |
8f653e28 SS |
68 | #ifndef FF_API_GET_PIX_FMT_NAME |
69 | #define FF_API_GET_PIX_FMT_NAME (LIBAVCODEC_VERSION_MAJOR < 54) | |
70 | #endif | |
71a861cf AK |
71 | #ifndef FF_API_ALLOC_CONTEXT |
72 | #define FF_API_ALLOC_CONTEXT (LIBAVCODEC_VERSION_MAJOR < 54) | |
73 | #endif | |
0b950fe2 AK |
74 | #ifndef FF_API_AVCODEC_OPEN |
75 | #define FF_API_AVCODEC_OPEN (LIBAVCODEC_VERSION_MAJOR < 54) | |
76 | #endif | |
9b83919f AK |
77 | #ifndef FF_API_DRC_SCALE |
78 | #define FF_API_DRC_SCALE (LIBAVCODEC_VERSION_MAJOR < 54) | |
79 | #endif | |
ac90a714 DB |
80 | #ifndef FF_API_ER |
81 | #define FF_API_ER (LIBAVCODEC_VERSION_MAJOR < 54) | |
18cb40f0 | 82 | #endif |
7221139b AK |
83 | #ifndef FF_API_AVCODEC_INIT |
84 | #define FF_API_AVCODEC_INIT (LIBAVCODEC_VERSION_MAJOR < 54) | |
85 | #endif | |
d5dc8cc2 AK |
86 | #ifndef FF_API_X264_GLOBAL_OPTS |
87 | #define FF_API_X264_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) | |
88 | #endif | |
297d9cb3 AK |
89 | #ifndef FF_API_MPEGVIDEO_GLOBAL_OPTS |
90 | #define FF_API_MPEGVIDEO_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) | |
91 | #endif | |
a7cec3a0 AK |
92 | #ifndef FF_API_LAME_GLOBAL_OPTS |
93 | #define FF_API_LAME_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) | |
94 | #endif | |
0cc06b9e AK |
95 | #ifndef FF_API_SNOW_GLOBAL_OPTS |
96 | #define FF_API_SNOW_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) | |
97 | #endif | |
1f0c7020 AK |
98 | #ifndef FF_API_MJPEG_GLOBAL_OPTS |
99 | #define FF_API_MJPEG_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) | |
100 | #endif | |
586657c2 AK |
101 | #ifndef FF_API_GET_ALPHA_INFO |
102 | #define FF_API_GET_ALPHA_INFO (LIBAVCODEC_VERSION_MAJOR < 54) | |
103 | #endif | |
512557b2 JR |
104 | #ifndef FF_API_PARSE_FRAME |
105 | #define FF_API_PARSE_FRAME (LIBAVCODEC_VERSION_MAJOR < 54) | |
106 | #endif | |
f3a29b75 JR |
107 | #ifndef FF_API_INTERNAL_CONTEXT |
108 | #define FF_API_INTERNAL_CONTEXT (LIBAVCODEC_VERSION_MAJOR < 54) | |
109 | #endif | |
8b7412fe AK |
110 | #ifndef FF_API_TIFFENC_COMPLEVEL |
111 | #define FF_API_TIFFENC_COMPLEVEL (LIBAVCODEC_VERSION_MAJOR < 54) | |
112 | #endif | |
560f773c JR |
113 | #ifndef FF_API_DATA_POINTERS |
114 | #define FF_API_DATA_POINTERS (LIBAVCODEC_VERSION_MAJOR < 54) | |
115 | #endif | |
0eea2129 JR |
116 | #ifndef FF_API_OLD_DECODE_AUDIO |
117 | #define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 54) | |
118 | #endif | |
8400b126 MR |
119 | #ifndef FF_API_AVFRAME_AGE |
120 | #define FF_API_AVFRAME_AGE (LIBAVCODEC_VERSION_MAJOR < 54) | |
121 | #endif | |
b2c75b6e JR |
122 | #ifndef FF_API_OLD_ENCODE_AUDIO |
123 | #define FF_API_OLD_ENCODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 54) | |
124 | #endif | |
3dd851c4 AK |
125 | |
126 | #endif /* AVCODEC_VERSION_H */ |