2012-07-01 09:51:30 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav is free software; you can redistribute it and/or
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Libav is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
|
|
|
* License along with Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVUTIL_VERSION_H
|
|
|
|
#define AVUTIL_VERSION_H
|
|
|
|
|
|
|
|
#include "avutil.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @ingroup lavu
|
|
|
|
* Libavutil version macros
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup lavu_ver Version and Build diagnostics
|
|
|
|
*
|
|
|
|
* Macros and function useful to check at compiletime and at runtime
|
|
|
|
* which version of libavutil is in use.
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2012-10-22 07:12:03 +00:00
|
|
|
#define LIBAVUTIL_VERSION_MAJOR 52
|
2013-10-27 21:21:59 +00:00
|
|
|
#define LIBAVUTIL_VERSION_MINOR 18
|
2013-05-12 13:41:49 +00:00
|
|
|
#define LIBAVUTIL_VERSION_MICRO 0
|
2012-07-01 09:51:30 +00:00
|
|
|
|
|
|
|
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
|
|
|
LIBAVUTIL_VERSION_MINOR, \
|
|
|
|
LIBAVUTIL_VERSION_MICRO)
|
|
|
|
#define LIBAVUTIL_VERSION AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \
|
|
|
|
LIBAVUTIL_VERSION_MINOR, \
|
|
|
|
LIBAVUTIL_VERSION_MICRO)
|
|
|
|
#define LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT
|
|
|
|
|
|
|
|
#define LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*
|
|
|
|
* @defgroup depr_guards Deprecation guards
|
2012-07-03 20:42:42 +00: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.
|
2012-07-01 09:51:30 +00:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
2012-07-03 20:42:42 +00:00
|
|
|
|
2012-10-06 09:18:06 +00:00
|
|
|
#ifndef FF_API_PIX_FMT
|
2012-10-22 07:11:41 +00:00
|
|
|
#define FF_API_PIX_FMT (LIBAVUTIL_VERSION_MAJOR < 53)
|
2012-10-06 09:18:06 +00:00
|
|
|
#endif
|
2012-10-11 12:08:04 +00:00
|
|
|
#ifndef FF_API_CONTEXT_SIZE
|
2012-10-22 07:11:41 +00:00
|
|
|
#define FF_API_CONTEXT_SIZE (LIBAVUTIL_VERSION_MAJOR < 53)
|
2012-10-11 12:08:04 +00:00
|
|
|
#endif
|
2012-10-06 10:36:38 +00:00
|
|
|
#ifndef FF_API_PIX_FMT_DESC
|
2012-10-22 07:11:41 +00:00
|
|
|
#define FF_API_PIX_FMT_DESC (LIBAVUTIL_VERSION_MAJOR < 53)
|
2012-10-06 10:36:38 +00:00
|
|
|
#endif
|
2012-10-11 16:50:30 +00:00
|
|
|
#ifndef FF_API_AV_REVERSE
|
2012-10-22 07:11:41 +00:00
|
|
|
#define FF_API_AV_REVERSE (LIBAVUTIL_VERSION_MAJOR < 53)
|
2012-10-11 16:50:30 +00:00
|
|
|
#endif
|
2012-11-10 14:03:17 +00:00
|
|
|
#ifndef FF_API_AUDIOCONVERT
|
|
|
|
#define FF_API_AUDIOCONVERT (LIBAVUTIL_VERSION_MAJOR < 53)
|
|
|
|
#endif
|
2012-11-16 13:55:08 +00:00
|
|
|
#ifndef FF_API_CPU_FLAG_MMX2
|
|
|
|
#define FF_API_CPU_FLAG_MMX2 (LIBAVUTIL_VERSION_MAJOR < 53)
|
|
|
|
#endif
|
2013-02-25 07:06:59 +00:00
|
|
|
#ifndef FF_API_LLS_PRIVATE
|
|
|
|
#define FF_API_LLS_PRIVATE (LIBAVUTIL_VERSION_MAJOR < 53)
|
|
|
|
#endif
|
2012-10-08 05:50:14 +00:00
|
|
|
#ifndef FF_API_AVFRAME_LAVC
|
|
|
|
#define FF_API_AVFRAME_LAVC (LIBAVUTIL_VERSION_MAJOR < 53)
|
|
|
|
#endif
|
2013-07-25 19:30:18 +00:00
|
|
|
#ifndef FF_API_VDPAU
|
|
|
|
#define FF_API_VDPAU (LIBAVUTIL_VERSION_MAJOR < 53)
|
|
|
|
#endif
|
2013-11-05 07:16:31 +00:00
|
|
|
#ifndef FF_API_XVMC
|
|
|
|
#define FF_API_XVMC (LIBAVUTIL_VERSION_MAJOR < 53)
|
|
|
|
#endif
|
2012-07-01 09:51:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif /* AVUTIL_VERSION_H */
|