summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrcombs <rcombs@rcombs.me>2021-05-26 13:57:35 -0500
committersfan5 <sfan5@live.de>2023-06-25 11:01:58 +0200
commit1669c4698d237eb885aa3f9c5b81983de6009418 (patch)
treec466d43d57dce92472f90fbf00aeacdb25d1bc4c
parent78285e98f1479ba27d652c9f79329fee5eb1add2 (diff)
downloadmpv-1669c4698d237eb885aa3f9c5b81983de6009418.tar.bz2
mpv-1669c4698d237eb885aa3f9c5b81983de6009418.tar.xz
options: set subs-with-matching-audio to off by default
This means that subtitles won't be displayed unless the user asks for them
-rw-r--r--DOCS/interface-changes.rst1
-rw-r--r--DOCS/man/options.rst5
-rw-r--r--options/options.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/interface-changes.rst b/DOCS/interface-changes.rst
index e476e8debb..47abc427f0 100644
--- a/DOCS/interface-changes.rst
+++ b/DOCS/interface-changes.rst
@@ -78,6 +78,7 @@ Interface changes
- remove the `--tone-mapping-crosstalk` option
- add `--gamut-mapping-mode=perceptual|relative|saturation|absolute|linear`
- add `--corner-rounding` option
+ - change `--subs-with-matching-audio` default from `yes` to `no`
--- mpv 0.35.0 ---
- add the `--vo=gpu-next` video output driver, as well as the options
`--allow-delayed-peak-detect`, `--builtin-scalers`,
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index b4f0865cdc..9d653ed886 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -136,9 +136,8 @@ Track Selection
referenced tracks are always selected.
``--subs-with-matching-audio=<yes|no>``
- When autoselecting a subtitle track, select a non-forced one even if the selected
- audio stream matches your preferred subtitle language (default: yes). Disable this
- if you'd like to only show subtitles for foreign audio or onscreen text.
+ When autoselecting a subtitle track, select a full/non-forced one even if the selected
+ audio stream matches your preferred subtitle language (default: no).
Playback Control
diff --git a/options/options.c b/options/options.c
index 189a5e4b71..626bddc5be 100644
--- a/options/options.c
+++ b/options/options.c
@@ -1031,7 +1031,7 @@ static const struct MPOpts mp_default_opts = {
[STREAM_VIDEO] = -2,
[STREAM_SUB] = -2, }, },
.stream_auto_sel = true,
- .subs_with_matching_audio = true,
+ .subs_with_matching_audio = false,
.audio_display = 1,
.audio_output_format = 0, // AF_FORMAT_UNKNOWN
.playback_speed = 1.,