From 58bc1eef7fcc2712f4fe69e418f697d6f4d57df4 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 3 Aug 2023 10:53:03 +0100 Subject: gentoo auto-resync : 03:08:2023 - 10:53:03 --- .../mpv/files/mpv-0.36.0-sub-match-audio.patch | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 media-video/mpv/files/mpv-0.36.0-sub-match-audio.patch (limited to 'media-video/mpv/files/mpv-0.36.0-sub-match-audio.patch') diff --git a/media-video/mpv/files/mpv-0.36.0-sub-match-audio.patch b/media-video/mpv/files/mpv-0.36.0-sub-match-audio.patch new file mode 100644 index 000000000000..d893b7b78c12 --- /dev/null +++ b/media-video/mpv/files/mpv-0.36.0-sub-match-audio.patch @@ -0,0 +1,35 @@ +Backport to restore --subs-with-matching-audio back to "yes" by default +like it was in <0.36 to spare users from confusion and/or needlessly +adjusting their configs until next version. + +https://github.com/mpv-player/mpv/issues/11854 +https://github.com/mpv-player/mpv/pull/12015 +https://github.com/mpv-player/mpv/commit/a2dd78fbc0932a4f47edbe4c41fe268095075c88 +--- a/DOCS/man/options.rst ++++ b/DOCS/man/options.rst +@@ -140,11 +140,11 @@ Track Selection + + ``--subs-with-matching-audio=`` + When autoselecting a subtitle track, select a full/non-forced one even if the selected +- audio stream matches your preferred subtitle language (default: no). ++ audio stream matches your preferred subtitle language (default: yes). + + ``--subs-fallback=`` + When autoselecting a subtitle track, if no tracks match your preferred languages, +- select a full track even if it doesn't match your preferred subtitle language (default: no). ++ select a full track even if it doesn't match your preferred subtitle language (default: default). + Setting this to `default` means that only streams flagged as `default` will be selected. + + ``--subs-fallback-forced=`` +--- a/options/options.c ++++ b/options/options.c +@@ -1040,7 +1040,8 @@ static const struct MPOpts mp_default_opts = { + [STREAM_SUB] = (char *[]){ "auto", NULL }, + }, + .stream_auto_sel = true, +- .subs_with_matching_audio = false, ++ .subs_with_matching_audio = true, ++ .subs_fallback = 1, + .subs_fallback_forced = true, + .audio_display = 1, + .audio_output_format = 0, // AF_FORMAT_UNKNOWN -- cgit v1.2.3