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=`` - 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.,