2011-03-14 21:58:13 +01:00
|
|
|
/*
|
|
|
|
*
|
2011-04-15 22:30:26 +02:00
|
|
|
* This file is part of Libav.
|
2011-03-14 21:58:13 +01:00
|
|
|
*
|
2011-04-15 22:30:26 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2011-03-14 21:58:13 +01: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 22:30:26 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2011-03-14 21:58:13 +01: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 22:30:26 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2011-03-14 21:58:13 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVCODEC_VERSION_H
|
|
|
|
#define AVCODEC_VERSION_H
|
|
|
|
|
2012-04-08 14:08:05 +02:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @ingroup libavc
|
|
|
|
* Libavcodec version macros.
|
|
|
|
*/
|
|
|
|
|
2013-02-17 10:31:25 +01:00
|
|
|
#define LIBAVCODEC_VERSION_MAJOR 55
|
2011-12-16 21:30:27 +01:00
|
|
|
#define LIBAVCODEC_VERSION_MINOR 6
|
2013-02-17 10:31:25 +01:00
|
|
|
#define LIBAVCODEC_VERSION_MICRO 0
|
2011-03-14 21:58:13 +01: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 22:42:42 +02: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 21:58:13 +01:00
|
|
|
*/
|
2012-07-03 22:42:42 +02:00
|
|
|
|
2011-04-06 07:38:11 +02:00
|
|
|
#ifndef FF_API_REQUEST_CHANNELS
|
2013-02-23 08:18:28 +01:00
|
|
|
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 56)
|
2011-04-06 07:38:11 +02:00
|
|
|
#endif
|
2013-03-03 17:23:08 +01:00
|
|
|
#ifndef FF_API_DEINTERLACE
|
|
|
|
#define FF_API_DEINTERLACE (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2012-10-31 08:53:18 +01:00
|
|
|
#ifndef FF_API_DESTRUCT_PACKET
|
|
|
|
#define FF_API_DESTRUCT_PACKET (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2012-11-21 21:34:46 +01:00
|
|
|
#ifndef FF_API_GET_BUFFER
|
|
|
|
#define FF_API_GET_BUFFER (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2013-01-22 02:41:54 +01:00
|
|
|
#ifndef FF_API_MISSING_SAMPLE
|
|
|
|
#define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2013-04-30 12:17:33 +02:00
|
|
|
#ifndef FF_API_LOWRES
|
|
|
|
#define FF_API_LOWRES (LIBAVCODEC_VERSION_MAJOR < 56)
|
|
|
|
#endif
|
2011-03-14 21:58:13 +01:00
|
|
|
|
|
|
|
#endif /* AVCODEC_VERSION_H */
|