2011-03-14 22:58:13 +02:00
|
|
|
/*
|
|
|
|
*
|
2011-04-15 23:30:26 +03:00
|
|
|
* This file is part of Libav.
|
2011-03-14 22:58:13 +02:00
|
|
|
*
|
2011-04-15 23:30:26 +03:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2011-03-14 22:58:13 +02: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 23:30:26 +03:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2011-03-14 22:58:13 +02: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 23:30:26 +03:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2011-03-14 22:58:13 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVCODEC_VERSION_H
|
|
|
|
#define AVCODEC_VERSION_H
|
|
|
|
|
2012-04-08 15:08:05 +03:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @ingroup libavc
|
|
|
|
* Libavcodec version macros.
|
|
|
|
*/
|
|
|
|
|
2013-02-17 12:31:25 +03:00
|
|
|
#define LIBAVCODEC_VERSION_MAJOR 55
|
|
|
|
#define LIBAVCODEC_VERSION_MINOR 0
|
|
|
|
#define LIBAVCODEC_VERSION_MICRO 0
|
2011-03-14 22:58:13 +02: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)
|
|
|
|
|
|
|
|
/**
|
2012-07-03 23:42:42 +03:00
|
|
|
* FF_API_* defines may be placed below to indicate public API that will be
|
|
|
|
* dropped at a future version bump. The defines themselves are not part of
|
|
|
|
* the public API and may change, break or disappear at any time.
|
2011-03-14 22:58:13 +02:00
|
|
|
*/
|
2012-07-03 23:42:42 +03:00
|
|
|
|
2011-04-06 08:38:11 +03:00
|
|
|
#ifndef FF_API_REQUEST_CHANNELS
|
2013-02-23 10:18:28 +03:00
|
|
|
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 56)
|
2011-04-06 08:38:11 +03:00
|
|
|
#endif
|
2012-08-05 11:36:55 +03:00
|
|
|
#ifndef FF_API_CODEC_ID
|
|
|
|
#define FF_API_CODEC_ID (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-08-14 12:45:29 +03:00
|
|
|
#ifndef FF_API_VDA_ASYNC
|
|
|
|
#define FF_API_VDA_ASYNC (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-10-05 08:25:56 +03:00
|
|
|
#ifndef FF_API_AVCODEC_RESAMPLE
|
|
|
|
#define FF_API_AVCODEC_RESAMPLE (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-10-11 17:35:48 +03:00
|
|
|
#ifndef FF_API_LIBMPEG2
|
|
|
|
#define FF_API_LIBMPEG2 (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-10-11 17:48:27 +03:00
|
|
|
#ifndef FF_API_MMI
|
|
|
|
#define FF_API_MMI (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2012-09-24 18:57:14 +03:00
|
|
|
#ifndef FF_API_SNOW
|
|
|
|
#define FF_API_SNOW (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2013-01-21 09:15:28 +03:00
|
|
|
#ifndef FF_API_IDCT
|
|
|
|
#define FF_API_IDCT (LIBAVCODEC_VERSION_MAJOR < 55)
|
|
|
|
#endif
|
2013-03-03 19:23:08 +03:00
|
|
|
#ifndef FF_API_DEINTERLACE
|
|
|
|
#define FF_API_DEINTERLACE (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2012-10-31 10:53:18 +03:00
|
|
|
#ifndef FF_API_DESTRUCT_PACKET
|
|
|
|
#define FF_API_DESTRUCT_PACKET (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2012-11-21 23:34:46 +03:00
|
|
|
#ifndef FF_API_GET_BUFFER
|
|
|
|
#define FF_API_GET_BUFFER (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2011-03-14 22:58:13 +02:00
|
|
|
|
|
|
|
#endif /* AVCODEC_VERSION_H */
|