summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-27 19:13:51 +0100
committerwm4 <wm4@nowhere>2015-01-27 19:13:51 +0100
commitb473477fc53ba69e9117a691b00d0e248ebc9ac7 (patch)
treeba6d2613b4af5302f6a3a192a8831ca12c7eb964 /video/filter/vf.c
parent86bba0dc5ba5ce9a5b10d602c9c261ed613cbbf3 (diff)
downloadmpv-b473477fc53ba69e9117a691b00d0e248ebc9ac7.tar.bz2
mpv-b473477fc53ba69e9117a691b00d0e248ebc9ac7.tar.xz
vf_ilpack: remove this filter
This was apparently useful for correct interlaced scaling (although I don't know anyone who used this). It was rarely used (if at all), had an inconvenient output format (packed YUV), and now has a better solution in libavfilter (using the libavfilter "scale" filter via vf_lavfi). There is no reason to keep this filter any longer.
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 890c297cc0..d60379ca6b 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -54,7 +54,6 @@ 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_ilpack;
extern const vf_info_t vf_info_dsize;
extern const vf_info_t vf_info_pullup;
extern const vf_info_t vf_info_delogo;
@@ -92,7 +91,6 @@ static const vf_info_t *const filter_list[] = {
&vf_info_gradfun,
&vf_info_unsharp,
&vf_info_hqdn3d,
- &vf_info_ilpack,
&vf_info_dsize,
&vf_info_pullup,
&vf_info_delogo,