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=`` - 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;