From 702090869122a42622623a94d0d43e9cf10d91db Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 11 Sep 2015 23:47:00 +0200 Subject: video/filter: remove some vf_lavfi wrappers I see no point in keeping these around. Keeping wrappers for some select libavfilter filters just because MPlayer had these filters is not a good reason. Ultimately, all real filtering work should go to libavfilter, and users should get used to using vf_lavfi directly. We might even not require the awful double-nested syntax for using libavfilter one day. vf_rotate, vf_yadif, vf_stereo3d are kept because mpv uses them internally. (They all extend the lavfi filters or change their defaults.) vf_mirror is kept for symmetry with vf_flip. vf_gradfun and vf_pullup are probably semi-popular, so I'll remove them not yet - only after some more discussion. --- video/filter/vf.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'video/filter/vf.c') diff --git a/video/filter/vf.c b/video/filter/vf.c index 6a28b55059..6ad484c7ff 100644 --- a/video/filter/vf.c +++ b/video/filter/vf.c @@ -46,14 +46,10 @@ extern const vf_info_t vf_info_noformat; extern const vf_info_t vf_info_flip; extern const vf_info_t vf_info_rotate; extern const vf_info_t vf_info_mirror; -extern const vf_info_t vf_info_noise; extern const vf_info_t vf_info_eq; extern const vf_info_t vf_info_gradfun; -extern const vf_info_t vf_info_unsharp; -extern const vf_info_t vf_info_hqdn3d; extern const vf_info_t vf_info_dsize; extern const vf_info_t vf_info_pullup; -extern const vf_info_t vf_info_delogo; extern const vf_info_t vf_info_sub; extern const vf_info_t vf_info_yadif; extern const vf_info_t vf_info_stereo3d; @@ -79,12 +75,8 @@ static const vf_info_t *const filter_list[] = { &vf_info_mirror, &vf_info_lavfi, &vf_info_rotate, - &vf_info_noise, &vf_info_gradfun, - &vf_info_unsharp, - &vf_info_hqdn3d, &vf_info_pullup, - &vf_info_delogo, &vf_info_yadif, &vf_info_stereo3d, #endif -- cgit v1.2.3