summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-04-21 13:33:47 +0200
committerJan Ekström <jeebjp@gmail.com>2018-04-29 02:21:32 +0300
commita5610b2a0df711a0c1151fb1cea78e03958167a7 (patch)
tree8a28e1d12d3093a41ef2133a3c84560fdcc3d8bc
parentc6b92884658f37f7ea9b55a595ddd252c57202c0 (diff)
downloadmpv-a5610b2a0df711a0c1151fb1cea78e03958167a7.tar.bz2
mpv-a5610b2a0df711a0c1151fb1cea78e03958167a7.tar.xz
options: remove broken --video-stereo-mode option
See changelog for minor explanation. Basically, 3D is unused crap and nobody cares.
-rw-r--r--DOCS/interface-changes.rst4
-rw-r--r--options/options.c3
-rw-r--r--options/options.h1
3 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/interface-changes.rst b/DOCS/interface-changes.rst
index 456b4ef473..d9fa295fc4 100644
--- a/DOCS/interface-changes.rst
+++ b/DOCS/interface-changes.rst
@@ -94,6 +94,10 @@ Interface changes
the future. (This kind of waiting was always a feature to prevent that
playback is started while scripts are only half-loaded.)
- deprecate --ovoffset, --oaoffset, --ovfirst, --oafirst
+ - remove --video-stereo-mode. This option was broken out of laziness, and
+ nobody wants to fix it. Automatic 3D down-conversion to 2D is also broken,
+ although you can just insert the stereo3d filter manually. The obscurity
+ of 3D content doesn't justify such an option anyway.
--- mpv 0.28.0 ---
- rename --hwdec=mediacodec option to mediacodec-copy, to reflect
conventions followed by other hardware video decoding APIs
diff --git a/options/options.c b/options/options.c
index 679133dbb3..b09a4a2224 100644
--- a/options/options.c
+++ b/options/options.c
@@ -583,9 +583,6 @@ const m_option_t mp_opts[] = {
OPT_STRING("force-media-title", media_title, 0),
OPT_CHOICE_OR_INT("video-rotate", video_rotate, UPDATE_IMGPAR, 0, 359,
({"no", -1})),
- OPT_CHOICE_C("video-stereo-mode", video_stereo_mode, UPDATE_IMGPAR,
- mp_stereo3d_names,
- .deprecation_message = "mostly broken"),
OPT_CHOICE_OR_INT("cursor-autohide", cursor_autohide_delay, 0,
0, 30000, ({"no", -1}, {"always", -2})),
diff --git a/options/options.h b/options/options.h
index 1e95e78e80..c38b1b9f73 100644
--- a/options/options.h
+++ b/options/options.h
@@ -174,7 +174,6 @@ typedef struct MPOpts {
int cursor_autohide_fs;
int video_rotate;
- int video_stereo_mode;
char *audio_decoders;
char *video_decoders;