2011-12-31 15:20:10 +00:00
|
|
|
/*
|
|
|
|
* Version macros.
|
|
|
|
*
|
2012-02-01 03:38:41 +00:00
|
|
|
* This file is part of FFmpeg.
|
2011-12-31 15:20:10 +00:00
|
|
|
*
|
2012-02-01 03:38:41 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2011-12-31 15:20:10 +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.
|
|
|
|
*
|
2012-02-01 03:38:41 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2011-12-31 15:20:10 +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
|
2012-02-01 03:38:41 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2011-12-31 15:20:10 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVFILTER_VERSION_H
|
|
|
|
#define AVFILTER_VERSION_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
2012-04-11 06:31:10 +00:00
|
|
|
* @ingroup lavfi
|
2011-12-31 15:20:10 +00:00
|
|
|
* Libavfilter version macros
|
|
|
|
*/
|
|
|
|
|
2013-12-25 16:16:05 +00:00
|
|
|
#include "libavutil/version.h"
|
2011-12-31 15:20:10 +00:00
|
|
|
|
2022-02-23 12:36:10 +00:00
|
|
|
#include "version_major.h"
|
|
|
|
|
2023-02-19 17:37:36 +00:00
|
|
|
#define LIBAVFILTER_VERSION_MINOR 4
|
2022-11-19 18:01:23 +00:00
|
|
|
#define LIBAVFILTER_VERSION_MICRO 100
|
2019-06-21 13:08:03 +00:00
|
|
|
|
2011-12-31 15:20:10 +00:00
|
|
|
|
|
|
|
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
|
|
|
|
LIBAVFILTER_VERSION_MINOR, \
|
|
|
|
LIBAVFILTER_VERSION_MICRO)
|
|
|
|
#define LIBAVFILTER_VERSION AV_VERSION(LIBAVFILTER_VERSION_MAJOR, \
|
|
|
|
LIBAVFILTER_VERSION_MINOR, \
|
|
|
|
LIBAVFILTER_VERSION_MICRO)
|
|
|
|
#define LIBAVFILTER_BUILD LIBAVFILTER_VERSION_INT
|
|
|
|
|
2012-09-27 14:12:19 +00:00
|
|
|
#define LIBAVFILTER_IDENT "Lavfi" AV_STRINGIFY(LIBAVFILTER_VERSION)
|
|
|
|
|
2012-07-02 08:17:07 +00:00
|
|
|
#endif /* AVFILTER_VERSION_H */
|