2011-03-14 20:58:13 +00:00
|
|
|
/*
|
|
|
|
*
|
2011-04-15 20:30:26 +00:00
|
|
|
* This file is part of Libav.
|
2011-03-14 20:58:13 +00:00
|
|
|
*
|
2011-04-15 20:30:26 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2011-03-14 20:58:13 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-04-15 20:30:26 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2011-03-14 20:58:13 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-04-15 20:30:26 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2011-03-14 20:58:13 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVCODEC_VERSION_H
|
|
|
|
#define AVCODEC_VERSION_H
|
|
|
|
|
2012-01-12 10:17:23 +00:00
|
|
|
#define LIBAVCODEC_VERSION_MAJOR 54
|
2012-03-02 16:00:53 +00:00
|
|
|
#define LIBAVCODEC_VERSION_MINOR 7
|
2012-01-09 00:50:31 +00:00
|
|
|
#define LIBAVCODEC_VERSION_MICRO 0
|
2011-03-14 20:58:13 +00:00
|
|
|
|
|
|
|
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
|
|
|
LIBAVCODEC_VERSION_MINOR, \
|
|
|
|
LIBAVCODEC_VERSION_MICRO)
|
|
|
|
#define LIBAVCODEC_VERSION AV_VERSION(LIBAVCODEC_VERSION_MAJOR, \
|
|
|
|
LIBAVCODEC_VERSION_MINOR, \
|
|
|
|
LIBAVCODEC_VERSION_MICRO)
|
|
|
|
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
|
|
|
|
|
|
|
|
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Those FF_API_* defines are not part of public API.
|
|
|
|
* They may change, break or disappear at any time.
|
|
|
|
*/
|
2011-04-06 05:38:11 +00:00
|
|
|
#ifndef FF_API_REQUEST_CHANNELS
|
2012-01-12 10:16:38 +00:00
|
|
|
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 55)
|
2011-04-06 05:38:11 +00:00
|
|
|
#endif
|
2011-09-06 16:17:45 +00:00
|
|
|
#ifndef FF_API_OLD_DECODE_AUDIO
|
2012-01-22 09:43:40 +00:00
|
|
|
#define FF_API_OLD_DECODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 55)
|
2011-09-06 16:17:45 +00:00
|
|
|
#endif
|
2011-12-18 18:20:15 +00:00
|
|
|
#ifndef FF_API_OLD_ENCODE_AUDIO
|
2012-01-22 09:43:40 +00:00
|
|
|
#define FF_API_OLD_ENCODE_AUDIO (LIBAVCODEC_VERSION_MAJOR < 55)
|
2011-12-18 18:20:15 +00:00
|
|
|
#endif
|
2012-02-01 08:54:38 +00:00
|
|
|
#ifndef FF_API_OLD_ENCODE_VIDEO
|
|
|
|
#define FF_API_OLD_ENCODE_VIDEO (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-02-27 11:12:19 +00:00
|
|
|
#ifndef FF_API_MPV_GLOBAL_OPTS
|
|
|
|
#define FF_API_MPV_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-02-27 18:53:21 +00:00
|
|
|
#ifndef FF_API_COLOR_TABLE_ID
|
|
|
|
#define FF_API_COLOR_TABLE_ID (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-02-27 18:58:41 +00:00
|
|
|
#ifndef FF_API_INTER_THRESHOLD
|
|
|
|
#define FF_API_INTER_THRESHOLD (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-02-27 17:52:13 +00:00
|
|
|
#ifndef FF_API_SUB_ID
|
|
|
|
#define FF_API_SUB_ID (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2011-03-14 20:58:13 +00:00
|
|
|
|
|
|
|
#endif /* AVCODEC_VERSION_H */
|