summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-03 22:49:00 +0100
committerwm4 <wm4@nowhere>2014-12-03 23:01:19 +0100
commit809936fdb93a5375699a7ba4be1e08acdf5e5645 (patch)
treea58b0d60c0955255d0be68be7a7e4b93bb936b19 /video/filter/vf.c
parent8fc3d7dc396c998075373321bbe256d2c490c956 (diff)
downloadmpv-809936fdb93a5375699a7ba4be1e08acdf5e5645.tar.bz2
mpv-809936fdb93a5375699a7ba4be1e08acdf5e5645.tar.xz
video/filter: kill vf_pp (libpostproc)
This is an ancient filter, and we assume it's not useful anymore. If you really want this, it's still available in libavfilter (e.g. via --vf=lavfi=[pp...]). The disadvantage is that mpv doesn't pass through QP information to libavfilter. (This was probably the reason vf_pp still was part of mpv - it was slightly easier to pass QP internally.)
Diffstat (limited to 'video/filter/vf.c')
-rw-r--r--video/filter/vf.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index bf3f73c0e6..d3441febf1 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -43,7 +43,6 @@
extern const vf_info_t vf_info_crop;
extern const vf_info_t vf_info_expand;
-extern const vf_info_t vf_info_pp;
extern const vf_info_t vf_info_scale;
extern const vf_info_t vf_info_format;
extern const vf_info_t vf_info_noformat;
@@ -86,9 +85,6 @@ static const vf_info_t *const filter_list[] = {
&vf_info_rotate,
&vf_info_mirror,
-#if HAVE_LIBPOSTPROC
- &vf_info_pp,
-#endif
#if HAVE_LIBAVFILTER
&vf_info_lavfi,
#endif