Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-01-05 23:49:09 +0300
committerJames Almer <jamrial@gmail.com>2018-01-05 23:49:09 +0300
commit798dcf2432999f449c76c0e0fe2d7a4ee5eabbc2 (patch)
treeee5a53a9e9b9f34907b363a0a3a1a4ed6079a251 /libavfilter/version.h
parentb9ad04b19c0c7244cc3788f3fa45e9fbe0b620a8 (diff)
avfilter: deprecate avfilter_link_get_channels()
And move the channels field to the public section of the struct. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavfilter/version.h')
-rw-r--r--libavfilter/version.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavfilter/version.h b/libavfilter/version.h
index c07f4d30d9..0f11721822 100644
--- a/libavfilter/version.h
+++ b/libavfilter/version.h
@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MINOR 11
-#define LIBAVFILTER_VERSION_MICRO 100
+#define LIBAVFILTER_VERSION_MICRO 101
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
@@ -55,5 +55,8 @@
#ifndef FF_API_LAVR_OPTS
#define FF_API_LAVR_OPTS (LIBAVFILTER_VERSION_MAJOR < 8)
#endif
+#ifndef FF_API_FILTER_GET_SET
+#define FF_API_FILTER_GET_SET (LIBAVFILTER_VERSION_MAJOR < 8)
+#endif
#endif /* AVFILTER_VERSION_H */