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 | ||
7063b6ea | 29 | #define LIBAVCODEC_VERSION_MAJOR 54 |
edf35d83 | 30 | #define LIBAVCODEC_VERSION_MINOR 17 |
c6061443 | 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 | /** | |
44 | * Those FF_API_* defines are not part of public API. | |
45 | * They may change, break or disappear at any time. | |
46 | */ | |
9f5ddd1e | 47 | #ifndef FF_API_REQUEST_CHANNELS |
1381e9bc | 48 | #define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 55) |
9f5ddd1e | 49 | #endif |
0eea2129 | 50 | #ifndef FF_API_OLD_DECODE_AUDIO |
af0292f3 | 51 | #define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 55) |
0eea2129 | 52 | #endif |
b2c75b6e | 53 | #ifndef FF_API_OLD_ENCODE_AUDIO |
af0292f3 | 54 | #define FF_API_OLD_ENCODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 55) |
b2c75b6e | 55 | #endif |
52f82a11 AK |
56 | #ifndef FF_API_OLD_ENCODE_VIDEO |
57 | #define FF_API_OLD_ENCODE_VIDEO (LIBAVCODEC_VERSION_MAJOR < 55) | |
58 | #endif | |
ed019b8e AK |
59 | #ifndef FF_API_MPV_GLOBAL_OPTS |
60 | #define FF_API_MPV_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 55) | |
61 | #endif | |
4f07f819 AK |
62 | #ifndef FF_API_COLOR_TABLE_ID |
63 | #define FF_API_COLOR_TABLE_ID (LIBAVCODEC_VERSION_MAJOR < 55) | |
64 | #endif | |
16b7557b AK |
65 | #ifndef FF_API_INTER_THRESHOLD |
66 | #define FF_API_INTER_THRESHOLD (LIBAVCODEC_VERSION_MAJOR < 55) | |
67 | #endif | |
02beb982 AK |
68 | #ifndef FF_API_SUB_ID |
69 | #define FF_API_SUB_ID (LIBAVCODEC_VERSION_MAJOR < 55) | |
70 | #endif | |
95510be8 MR |
71 | #ifndef FF_API_DSP_MASK |
72 | #define FF_API_DSP_MASK (LIBAVCODEC_VERSION_MAJOR < 55) | |
73 | #endif | |
3dd851c4 AK |
74 | |
75 | #endif /* AVCODEC_VERSION_H */ |