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 | ||
7c59b5c2 AK |
23 | /** |
24 | * @file | |
25 | * @ingroup libavc | |
26 | * Libavcodec version macros. | |
27 | */ | |
28 | ||
b83d1ee3 DB |
29 | #include "libavutil/version.h" |
30 | ||
e88103a7 | 31 | #define LIBAVCODEC_VERSION_MAJOR 57 |
00332e0a | 32 | #define LIBAVCODEC_VERSION_MINOR 4 |
e88103a7 | 33 | #define LIBAVCODEC_VERSION_MICRO 0 |
3dd851c4 AK |
34 | |
35 | #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ | |
36 | LIBAVCODEC_VERSION_MINOR, \ | |
37 | LIBAVCODEC_VERSION_MICRO) | |
38 | #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \ | |
39 | LIBAVCODEC_VERSION_MINOR, \ | |
40 | LIBAVCODEC_VERSION_MICRO) | |
41 | #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT | |
42 | ||
43 | #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) | |
44 | ||
45 | /** | |
2047e40e DB |
46 | * FF_API_* defines may be placed below to indicate public API that will be |
47 | * dropped at a future version bump. The defines themselves are not part of | |
48 | * the public API and may change, break or disappear at any time. | |
3dd851c4 | 49 | */ |
2047e40e | 50 | |
f099d3d1 | 51 | #ifndef FF_API_MISSING_SAMPLE |
4e649deb | 52 | #define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 58) |
f099d3d1 | 53 | #endif |
803d21f3 | 54 | #ifndef FF_API_LOWRES |
4e649deb | 55 | #define FF_API_LOWRES (LIBAVCODEC_VERSION_MAJOR < 58) |
803d21f3 | 56 | #endif |
549294fb | 57 | #ifndef FF_API_CAP_VDPAU |
4e649deb | 58 | #define FF_API_CAP_VDPAU (LIBAVCODEC_VERSION_MAJOR < 58) |
549294fb | 59 | #endif |
f824535a | 60 | #ifndef FF_API_BUFS_VDPAU |
4e649deb | 61 | #define FF_API_BUFS_VDPAU (LIBAVCODEC_VERSION_MAJOR < 58) |
f824535a | 62 | #endif |
f544c586 | 63 | #ifndef FF_API_VOXWARE |
4e649deb | 64 | #define FF_API_VOXWARE (LIBAVCODEC_VERSION_MAJOR < 58) |
f544c586 | 65 | #endif |
7644f5a8 | 66 | #ifndef FF_API_SET_DIMENSIONS |
4e649deb | 67 | #define FF_API_SET_DIMENSIONS (LIBAVCODEC_VERSION_MAJOR < 58) |
7644f5a8 | 68 | #endif |
ccc71298 | 69 | #ifndef FF_API_DEBUG_MV |
4e649deb | 70 | #define FF_API_DEBUG_MV (LIBAVCODEC_VERSION_MAJOR < 58) |
ccc71298 | 71 | #endif |
0300962b | 72 | #ifndef FF_API_AC_VLC |
4e649deb | 73 | #define FF_API_AC_VLC (LIBAVCODEC_VERSION_MAJOR < 58) |
0300962b | 74 | #endif |
eb5920c1 | 75 | #ifndef FF_API_OLD_MSMPEG4 |
4e649deb | 76 | #define FF_API_OLD_MSMPEG4 (LIBAVCODEC_VERSION_MAJOR < 58) |
eb5920c1 | 77 | #endif |
28240a60 | 78 | #ifndef FF_API_ASPECT_EXTENDED |
4e649deb | 79 | #define FF_API_ASPECT_EXTENDED (LIBAVCODEC_VERSION_MAJOR < 58) |
28240a60 | 80 | #endif |
c7f7bfc9 | 81 | #ifndef FF_API_ARCH_ALPHA |
4e649deb | 82 | #define FF_API_ARCH_ALPHA (LIBAVCODEC_VERSION_MAJOR < 58) |
c7f7bfc9 | 83 | #endif |
19e30a58 | 84 | #ifndef FF_API_XVMC |
4e649deb | 85 | #define FF_API_XVMC (LIBAVCODEC_VERSION_MAJOR < 58) |
19e30a58 | 86 | #endif |
8941971a | 87 | #ifndef FF_API_ERROR_RATE |
4e649deb | 88 | #define FF_API_ERROR_RATE (LIBAVCODEC_VERSION_MAJOR < 58) |
8941971a | 89 | #endif |
b45c8708 | 90 | #ifndef FF_API_QSCALE_TYPE |
4e649deb | 91 | #define FF_API_QSCALE_TYPE (LIBAVCODEC_VERSION_MAJOR < 58) |
b45c8708 | 92 | #endif |
b6094811 | 93 | #ifndef FF_API_MB_TYPE |
4e649deb | 94 | #define FF_API_MB_TYPE (LIBAVCODEC_VERSION_MAJOR < 58) |
b6094811 | 95 | #endif |
aa241229 | 96 | #ifndef FF_API_MAX_BFRAMES |
4e649deb | 97 | #define FF_API_MAX_BFRAMES (LIBAVCODEC_VERSION_MAJOR < 58) |
aa241229 | 98 | #endif |
cce3e0a4 | 99 | #ifndef FF_API_FAST_MALLOC |
4e649deb | 100 | #define FF_API_FAST_MALLOC (LIBAVCODEC_VERSION_MAJOR < 58) |
cce3e0a4 | 101 | #endif |
b068660f | 102 | #ifndef FF_API_NEG_LINESIZES |
4e649deb | 103 | #define FF_API_NEG_LINESIZES (LIBAVCODEC_VERSION_MAJOR < 58) |
b068660f | 104 | #endif |
93c553c7 | 105 | #ifndef FF_API_EMU_EDGE |
4e649deb | 106 | #define FF_API_EMU_EDGE (LIBAVCODEC_VERSION_MAJOR < 58) |
93c553c7 | 107 | #endif |
d6096a67 | 108 | #ifndef FF_API_ARCH_SH4 |
4e649deb | 109 | #define FF_API_ARCH_SH4 (LIBAVCODEC_VERSION_MAJOR < 58) |
d6096a67 | 110 | #endif |
b4dd424d | 111 | #ifndef FF_API_ARCH_SPARC |
4e649deb | 112 | #define FF_API_ARCH_SPARC (LIBAVCODEC_VERSION_MAJOR < 58) |
b4dd424d | 113 | #endif |
9f17685d | 114 | #ifndef FF_API_UNUSED_MEMBERS |
4e649deb | 115 | #define FF_API_UNUSED_MEMBERS (LIBAVCODEC_VERSION_MAJOR < 58) |
9f17685d | 116 | #endif |
d35b94fb | 117 | #ifndef FF_API_IDCT_XVIDMMX |
4e649deb | 118 | #define FF_API_IDCT_XVIDMMX (LIBAVCODEC_VERSION_MAJOR < 58) |
d35b94fb | 119 | #endif |
5fccedaa | 120 | #ifndef FF_API_INPUT_PRESERVED |
4e649deb | 121 | #define FF_API_INPUT_PRESERVED (LIBAVCODEC_VERSION_MAJOR < 58) |
5fccedaa | 122 | #endif |
b2c31710 | 123 | #ifndef FF_API_NORMALIZE_AQP |
4e649deb | 124 | #define FF_API_NORMALIZE_AQP (LIBAVCODEC_VERSION_MAJOR < 58) |
b2c31710 | 125 | #endif |
64841491 | 126 | #ifndef FF_API_GMC |
4e649deb | 127 | #define FF_API_GMC (LIBAVCODEC_VERSION_MAJOR < 58) |
64841491 | 128 | #endif |
a2941c8c | 129 | #ifndef FF_API_MV0 |
4e649deb | 130 | #define FF_API_MV0 (LIBAVCODEC_VERSION_MAJOR < 58) |
a2941c8c | 131 | #endif |
ba71c740 | 132 | #ifndef FF_API_CODEC_NAME |
4e649deb | 133 | #define FF_API_CODEC_NAME (LIBAVCODEC_VERSION_MAJOR < 58) |
ba71c740 | 134 | #endif |
1ef9e837 | 135 | #ifndef FF_API_AFD |
4e649deb | 136 | #define FF_API_AFD (LIBAVCODEC_VERSION_MAJOR < 58) |
1ef9e837 | 137 | #endif |
2df0c32e AK |
138 | #ifndef FF_API_AUDIOENC_DELAY |
139 | #define FF_API_AUDIOENC_DELAY (LIBAVCODEC_VERSION_MAJOR < 58) | |
140 | #endif | |
7ea1b347 AK |
141 | #ifndef FF_API_AVCTX_TIMEBASE |
142 | #define FF_API_AVCTX_TIMEBASE (LIBAVCODEC_VERSION_MAJOR < 59) | |
143 | #endif | |
a6e4ce9f AK |
144 | #ifndef FF_API_MPV_OPT |
145 | #define FF_API_MPV_OPT (LIBAVCODEC_VERSION_MAJOR < 59) | |
146 | #endif | |
e44b5892 AK |
147 | #ifndef FF_API_STREAM_CODEC_TAG |
148 | #define FF_API_STREAM_CODEC_TAG (LIBAVCODEC_VERSION_MAJOR < 59) | |
149 | #endif | |
910247f1 VG |
150 | #ifndef FF_API_QUANT_BIAS |
151 | #define FF_API_QUANT_BIAS (LIBAVCODEC_VERSION_MAJOR < 59) | |
152 | #endif | |
1761ab83 VG |
153 | #ifndef FF_API_RC_STRATEGY |
154 | #define FF_API_RC_STRATEGY (LIBAVCODEC_VERSION_MAJOR < 59) | |
155 | #endif | |
40cf1bba VG |
156 | #ifndef FF_API_CODED_FRAME |
157 | #define FF_API_CODED_FRAME (LIBAVCODEC_VERSION_MAJOR < 59) | |
158 | #endif | |
4b6b1082 VG |
159 | #ifndef FF_API_MOTION_EST |
160 | #define FF_API_MOTION_EST (LIBAVCODEC_VERSION_MAJOR < 59) | |
161 | #endif | |
b94ec304 VG |
162 | #ifndef FF_API_WITHOUT_PREFIX |
163 | #define FF_API_WITHOUT_PREFIX (LIBAVCODEC_VERSION_MAJOR < 59) | |
164 | #endif | |
6064f697 VG |
165 | #ifndef FF_API_SIDEDATA_ONLY_PKT |
166 | #define FF_API_SIDEDATA_ONLY_PKT (LIBAVCODEC_VERSION_MAJOR < 59) | |
167 | #endif | |
b10b6ac7 RDC |
168 | #ifndef FF_API_VDPAU_PROFILE |
169 | #define FF_API_VDPAU_PROFILE (LIBAVCODEC_VERSION_MAJOR < 59) | |
170 | #endif | |
948f3c19 | 171 | #ifndef FF_API_CONVERGENCE_DURATION |
172 | #define FF_API_CONVERGENCE_DURATION (LIBAVCODEC_VERSION_MAJOR < 59) | |
173 | #endif | |
3dd851c4 AK |
174 | |
175 | #endif /* AVCODEC_VERSION_H */ |