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 | ||
d8b31be6 | 29 | #define LIBAVCODEC_VERSION_MAJOR 55 |
cd8f772d | 30 | #define LIBAVCODEC_VERSION_MINOR 25 |
2d66a58c | 31 | #define LIBAVCODEC_VERSION_MICRO 0 |
3dd851c4 AK |
32 | |
33 | #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ | |
34 | LIBAVCODEC_VERSION_MINOR, \ | |
35 | LIBAVCODEC_VERSION_MICRO) | |
36 | #define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \ | |
37 | LIBAVCODEC_VERSION_MINOR, \ | |
38 | LIBAVCODEC_VERSION_MICRO) | |
39 | #define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT | |
40 | ||
41 | #define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION) | |
42 | ||
43 | /** | |
2047e40e DB |
44 | * FF_API_* defines may be placed below to indicate public API that will be |
45 | * dropped at a future version bump. The defines themselves are not part of | |
46 | * the public API and may change, break or disappear at any time. | |
3dd851c4 | 47 | */ |
2047e40e | 48 | |
9f5ddd1e | 49 | #ifndef FF_API_REQUEST_CHANNELS |
8df23e93 | 50 | #define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 56) |
9f5ddd1e | 51 | #endif |
54b298fe RB |
52 | #ifndef FF_API_DEINTERLACE |
53 | #define FF_API_DEINTERLACE (LIBAVCODEC_VERSION_MAJOR < 56) | |
54 | #endif | |
1afddbe5 AK |
55 | #ifndef FF_API_DESTRUCT_PACKET |
56 | #define FF_API_DESTRUCT_PACKET (LIBAVCODEC_VERSION_MAJOR < 56) | |
57 | #endif | |
759001c5 AK |
58 | #ifndef FF_API_GET_BUFFER |
59 | #define FF_API_GET_BUFFER (LIBAVCODEC_VERSION_MAJOR < 56) | |
60 | #endif | |
f099d3d1 DB |
61 | #ifndef FF_API_MISSING_SAMPLE |
62 | #define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 56) | |
63 | #endif | |
803d21f3 AK |
64 | #ifndef FF_API_LOWRES |
65 | #define FF_API_LOWRES (LIBAVCODEC_VERSION_MAJOR < 56) | |
66 | #endif | |
549294fb RDC |
67 | #ifndef FF_API_CAP_VDPAU |
68 | #define FF_API_CAP_VDPAU (LIBAVCODEC_VERSION_MAJOR < 56) | |
69 | #endif | |
f824535a RDC |
70 | #ifndef FF_API_BUFS_VDPAU |
71 | #define FF_API_BUFS_VDPAU (LIBAVCODEC_VERSION_MAJOR < 56) | |
72 | #endif | |
f544c586 KS |
73 | #ifndef FF_API_VOXWARE |
74 | #define FF_API_VOXWARE (LIBAVCODEC_VERSION_MAJOR < 56) | |
75 | #endif | |
7644f5a8 AK |
76 | #ifndef FF_API_SET_DIMENSIONS |
77 | #define FF_API_SET_DIMENSIONS (LIBAVCODEC_VERSION_MAJOR < 56) | |
78 | #endif | |
ccc71298 AK |
79 | #ifndef FF_API_DEBUG_MV |
80 | #define FF_API_DEBUG_MV (LIBAVCODEC_VERSION_MAJOR < 56) | |
81 | #endif | |
0300962b AK |
82 | #ifndef FF_API_AC_VLC |
83 | #define FF_API_AC_VLC (LIBAVCODEC_VERSION_MAJOR < 56) | |
84 | #endif | |
eb5920c1 AK |
85 | #ifndef FF_API_OLD_MSMPEG4 |
86 | #define FF_API_OLD_MSMPEG4 (LIBAVCODEC_VERSION_MAJOR < 56) | |
87 | #endif | |
28240a60 AK |
88 | #ifndef FF_API_ASPECT_EXTENDED |
89 | #define FF_API_ASPECT_EXTENDED (LIBAVCODEC_VERSION_MAJOR < 56) | |
90 | #endif | |
38ecc370 AK |
91 | #ifndef FF_API_THREAD_OPAQUE |
92 | #define FF_API_THREAD_OPAQUE (LIBAVCODEC_VERSION_MAJOR < 56) | |
93 | #endif | |
da6506c6 AK |
94 | #ifndef FF_API_CODEC_PKT |
95 | #define FF_API_CODEC_PKT (LIBAVCODEC_VERSION_MAJOR < 56) | |
96 | #endif | |
3dd851c4 AK |
97 | |
98 | #endif /* AVCODEC_VERSION_H */ |