summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-08-22 15:58:49 +0200
committerwm4 <wm4@nowhere>2017-08-22 15:58:49 +0200
commitd67aa6da6bbd3cba9eabd12cda4703821fecc7a1 (patch)
tree05cd621e35a68758686d3d89977244525c407074 /video/filter/vf.c
parentd2bdb72b69536370c3046107fc593896e74803c3 (diff)
downloadmpv-d67aa6da6bbd3cba9eabd12cda4703821fecc7a1.tar.bz2
mpv-d67aa6da6bbd3cba9eabd12cda4703821fecc7a1.tar.xz
vf_eq: remove this filter
Both the video equalizer command/option glue, which drives this filter, as well as the filter itself are slightly GPL contaminated. So it goes. After this commit, "--vf=eq" will actually use libavfilter's vf_eq (if FFmpeg was compiled in GPL mode), but it has different options and will not listen to the equalizer VOCTRLs.
Diffstat (limited to 'video/filter/vf.c')
-rw-r--r--video/filter/vf.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 0db6f2a286..ae38947262 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -47,7 +47,6 @@ 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_eq;
extern const vf_info_t vf_info_gradfun;
extern const vf_info_t vf_info_dsize;
extern const vf_info_t vf_info_pullup;
@@ -81,7 +80,6 @@ static const vf_info_t *const filter_list[] = {
&vf_info_yadif,
&vf_info_stereo3d,
- &vf_info_eq,
&vf_info_dsize,
&vf_info_sub,
&vf_info_buffer,