summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-08 21:02:31 +0200
committerwm4 <wm4@nowhere>2016-09-08 21:02:31 +0200
commit35e8b6c1e68ae936ca0aeee4f30732cd13ef9932 (patch)
tree739f25aa9a51ab0c2bfef3d18549511ff84b2154
parentca55a3292214c8bb2bc2340a159524474f472cec (diff)
downloadmpv-35e8b6c1e68ae936ca0aeee4f30732cd13ef9932.tar.bz2
mpv-35e8b6c1e68ae936ca0aeee4f30732cd13ef9932.tar.xz
options: drop unreferenced --bluray-angle option
Uh, what? It wasn't used at all. It was probably accidentally dropped at one point, or it was never used at all. Whatever, who cares.
-rw-r--r--DOCS/man/options.rst4
-rw-r--r--options/options.c2
-rw-r--r--options/options.h1
3 files changed, 1 insertions, 6 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 8a28181ea9..dbfa3d1e75 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -2273,10 +2273,6 @@ Disc Devices
``mpv bd:// --bluray-device=/path/to/bd/``
-``--bluray-angle=<ID>``
- Some Blu-ray discs contain scenes that can be viewed from multiple angles.
- This option tells mpv which angle to use (default: 1).
-
``--cdda-...``
These options can be used to tune the CD Audio reading feature of mpv.
diff --git a/options/options.c b/options/options.c
index 1d2203726d..64b264323e 100644
--- a/options/options.c
+++ b/options/options.c
@@ -284,7 +284,6 @@ const m_option_t mp_opts[] = {
({"auto", -1})),
#if HAVE_LIBBLURAY
OPT_STRING("bluray-device", bluray_device, M_OPT_FILE),
- OPT_INTRANGE("bluray-angle", bluray_angle, 0, 0, 999),
#endif /* HAVE_LIBBLURAY */
// ------------------------- demuxer options --------------------
@@ -737,6 +736,7 @@ const m_option_t mp_opts[] = {
OPT_REPLACED("media-title", "force-media-title"),
OPT_REPLACED("input-unix-socket", "input-ipc-server"),
OPT_REPLACED("softvol-max", "volume-max"),
+ OPT_REMOVED("bluray-angle", "this didn't do anything for a few releases"),
{0}
};
diff --git a/options/options.h b/options/options.h
index 45af785518..34ca1f320e 100644
--- a/options/options.h
+++ b/options/options.h
@@ -294,7 +294,6 @@ typedef struct MPOpts {
int dvd_angle;
int dvd_speed;
char *dvd_device;
- int bluray_angle;
char *bluray_device;
double mf_fps;