From a5610b2a0df711a0c1151fb1cea78e03958167a7 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 21 Apr 2018 13:33:47 +0200 Subject: options: remove broken --video-stereo-mode option See changelog for minor explanation. Basically, 3D is unused crap and nobody cares. --- DOCS/interface-changes.rst | 4 ++++ options/options.c | 3 --- options/options.h | 1 - 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; -- cgit v1.2.3