diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-12-31 16:20:10 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-12 09:00:54 +0100 |
commit | 3167dc9515810bbdd86d99d773bcf84657d2e72a (patch) | |
tree | 304761a385570e0fd8766436fa6d50eac72b3918 /libavfilter/avfilter.h | |
parent | 43fe6a29050fc34848731aa220292587f7ace5bd (diff) | |
download | ffmpeg-3167dc9515810bbdd86d99d773bcf84657d2e72a.tar.gz |
lavfi: move version macros to a new installed header version.h
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index cffcfcadc2..068c50bb48 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -29,20 +29,10 @@ #include "libavutil/rational.h" #include "libavcodec/avcodec.h" -#define LIBAVFILTER_VERSION_MAJOR 2 -#define LIBAVFILTER_VERSION_MINOR 14 -#define LIBAVFILTER_VERSION_MICRO 0 - -#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 - #include <stddef.h> +#include "libavfilter/version.h" + /** * Return the LIBAVFILTER_VERSION_INT constant. */ |