mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 20:32:13 +00:00
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.
This commit is contained in:
parent
ca55a32922
commit
35e8b6c1e6
@ -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.
|
||||
|
||||
|
@ -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}
|
||||
};
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user