libavfilter/version.h
3167dc95
 /*
  * Version macros.
  *
c4bdb2bf
  * This file is part of FFmpeg.
3167dc95
  *
c4bdb2bf
  * FFmpeg is free software; you can redistribute it and/or
3167dc95
  * 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.
  *
c4bdb2bf
  * FFmpeg is distributed in the hope that it will be useful,
3167dc95
  * 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
c4bdb2bf
  * License along with FFmpeg; if not, write to the Free Software
3167dc95
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVFILTER_VERSION_H
 #define AVFILTER_VERSION_H
 
 /**
  * @file
bc8c1cdc
  * @ingroup lavfi
3167dc95
  * Libavfilter version macros
  */
 
b83d1ee3
 #include "libavutil/version.h"
3167dc95
 
69b5ce64
 #define LIBAVFILTER_VERSION_MAJOR   7
3c1ecb05
 #define LIBAVFILTER_VERSION_MINOR  17
bcab11a1
 #define LIBAVFILTER_VERSION_MICRO 100
3167dc95
 
 #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
 
a70b4935
 #define LIBAVFILTER_IDENT       "Lavfi" AV_STRINGIFY(LIBAVFILTER_VERSION)
 
996f9f0c
 /**
2047e40e
  * 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.
996f9f0c
  */
2047e40e
 
ad7d972e
 #ifndef FF_API_OLD_FILTER_OPTS_ERROR
69b5ce64
 #define FF_API_OLD_FILTER_OPTS_ERROR        (LIBAVFILTER_VERSION_MAJOR < 8)
ad7d972e
 #endif
3796fb26
 #ifndef FF_API_LAVR_OPTS
69b5ce64
 #define FF_API_LAVR_OPTS                    (LIBAVFILTER_VERSION_MAJOR < 8)
3796fb26
 #endif
b2c42fc6
 #ifndef FF_API_FILTER_GET_SET
 #define FF_API_FILTER_GET_SET               (LIBAVFILTER_VERSION_MAJOR < 8)
 #endif
8f1382f8
 #ifndef FF_API_NEXT
 #define FF_API_NEXT                         (LIBAVFILTER_VERSION_MAJOR < 8)
 #endif
996f9f0c
 
1a068bfe
 #endif /* AVFILTER_VERSION_H */