summaryrefslogtreecommitdiffstats
path: root/mpvcore
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-23 21:30:56 +0100
committerwm4 <wm4@nowhere>2013-11-23 21:30:56 +0100
commit25855059af0778c99f7eefeae64c007ed6efe1bb (patch)
treeb96e9e01a9b2283477284cadf72fcc5c70479c25 /mpvcore
parent82605903469798f701706d8522ef8f461514ed08 (diff)
downloadmpv-25855059af0778c99f7eefeae64c007ed6efe1bb.tar.bz2
mpv-25855059af0778c99f7eefeae64c007ed6efe1bb.tar.xz
video: remove vf_pp auto-insertion
This drops the --pp option, which was probably broken for a while. The option automatically inserted the "pp" filter. The value passed to it was ignored (which is probably broken, it always selected maximal quality). Inserting this filter can be done simply with --vf=pp, so this is not needed anymore.
Diffstat (limited to 'mpvcore')
-rw-r--r--mpvcore/options.c2
-rw-r--r--mpvcore/options.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/mpvcore/options.c b/mpvcore/options.c
index efb6b79569..e01bce9959 100644
--- a/mpvcore/options.c
+++ b/mpvcore/options.c
@@ -491,8 +491,6 @@ const m_option_t mp_opts[] = {
{"vaapi-copy", 5})),
OPT_STRING("hwdec-codecs", hwdec_codecs, 0),
- // postprocessing:
- OPT_INT("pp", divx_quality, 0),
#if HAVE_LIBPOSTPROC
{"pphelp", (void *) &pp_help, CONF_TYPE_PRINT, CONF_GLOBAL | CONF_NOCFG, 0, 0, NULL},
#endif
diff --git a/mpvcore/options.h b/mpvcore/options.h
index 62090cedd4..8b3411bc39 100644
--- a/mpvcore/options.h
+++ b/mpvcore/options.h
@@ -180,7 +180,6 @@ typedef struct MPOpts {
float movie_aspect;
int flip;
int field_dominance;
- int divx_quality;
char **sub_name;
char **sub_paths;
int sub_auto;