2011-03-14 22:58:13 +02:00
|
|
|
/*
|
2011-04-18 00:57:50 +03:00
|
|
|
* This file is part of FFmpeg.
|
2011-03-14 22:58:13 +02:00
|
|
|
*
|
2011-04-18 00:57:50 +03:00
|
|
|
* FFmpeg 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-18 00:57:50 +03:00
|
|
|
* FFmpeg 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-18 00:57:50 +03:00
|
|
|
* License along with FFmpeg; 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-12-25 19:16:05 +03:00
|
|
|
#include "libavutil/version.h"
|
2012-09-27 10:35:29 +03:00
|
|
|
|
2022-02-23 12:55:45 +02:00
|
|
|
#include "version_major.h"
|
|
|
|
|
2024-06-05 05:04:58 +02:00
|
|
|
#define LIBAVCODEC_VERSION_MINOR 7
|
|
|
|
#define LIBAVCODEC_VERSION_MICRO 100
|
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)
|
|
|
|
|
|
|
|
#endif /* AVCODEC_VERSION_H */
|