summaryrefslogtreecommitdiffstats
path: root/video/filter/vf_lavfi.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-04-02 17:59:45 +0200
committerwm4 <wm4@nowhere>2017-04-02 18:00:16 +0200
commit3a9e661e929c34d25810fa903abbd9961f73ecef (patch)
tree2d559b17bba2402d430c34f6dd7832ea8068885c /video/filter/vf_lavfi.h
parent6b9d3f4f7bcc51c9b0ec6407b5df33106b028285 (diff)
downloadmpv-3a9e661e929c34d25810fa903abbd9961f73ecef.tar.bz2
mpv-3a9e661e929c34d25810fa903abbd9961f73ecef.tar.xz
video: deprecate almost all video filters
The plan is to nuke the custom filter chain completely. It's not clear what will happen to the still needed builtin filters (mostly hardware deinterlacing and vf_vapoursynth). Most likely we'll replace them with different filter chain concept (whose main purpose will be providing builtin things and bridging to libavfilter). The undocumented "warn" options are there to disable deprecation warnings when the player inserts filter automatically. The same will be done to audio filters, at a later point.
Diffstat (limited to 'video/filter/vf_lavfi.h')
-rw-r--r--video/filter/vf_lavfi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/filter/vf_lavfi.h b/video/filter/vf_lavfi.h
index 0b1f49323a..9196532138 100644
--- a/video/filter/vf_lavfi.h
+++ b/video/filter/vf_lavfi.h
@@ -18,4 +18,8 @@ void vf_lw_set_reconfig_cb(struct vf_instance *vf,
struct mp_image_params *in,
struct mp_image_params *out));
+#define VF_LW_REPLACE "This filter will be replaced by using libavfilter " \
+ "option syntax directly. Parts of the old syntax will stop working, " \
+ "and some defaults may change.\n"
+
#endif