summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-09-19 23:37:51 -0500
committerDudemanguy <random342@airmail.cc>2023-09-21 16:06:29 +0000
commit36ea5d7b5cafabba605aaa334017c48b27d6f5be (patch)
treef38973892c8128d819d093f33a9fd194eb38a5d5 /options/options.c
parent4b2276b730c8542649b665aaec187e1c7e3b2612 (diff)
downloadmpv-36ea5d7b5cafabba605aaa334017c48b27d6f5be.tar.bz2
mpv-36ea5d7b5cafabba605aaa334017c48b27d6f5be.tar.xz
options: remove a few options marked with .deprecation_message
A bit different from the OPT_REPLACED/OPT_REMOVED ones in that the options still possibly do something but they have a deprecation message. Most of these are old and have no real usage. The only potentially controversial ones are the removal of --oaffset and --ovoffset which were deprecated years ago and seemingly have no real replacement. There's a cryptic message about --audio-delay but who knows. The less encoding mode code we have, the better so just chuck it.
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/options/options.c b/options/options.c
index f930aaa6e0..9667d666c9 100644
--- a/options/options.c
+++ b/options/options.c
@@ -114,8 +114,6 @@ static const m_option_t mp_vo_opt_list[] = {
{"ontop-level", OPT_CHOICE(ontop_level, {"window", -1}, {"system", -2},
{"desktop", -3}), M_RANGE(0, INT_MAX)},
{"border", OPT_BOOL(border)},
- {"fit-border", OPT_BOOL(fit_border),
- .deprecation_message = "the option is ignored and no longer needed"},
{"on-all-workspaces", OPT_BOOL(all_workspaces)},
{"geometry", OPT_GEOMETRY(geometry)},
{"autofit", OPT_SIZE_BOX(autofit)},
@@ -216,7 +214,6 @@ const struct m_sub_options vo_sub_opts = {
.native_fs = true,
.taskbar_progress = true,
.border = true,
- .fit_border = true,
.appid = "mpv",
.content_type = -1,
.WinID = -1,