summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/interface-changes.rst3
-rw-r--r--options/options.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/DOCS/interface-changes.rst b/DOCS/interface-changes.rst
index 0e1fa35666..bdf5791a6b 100644
--- a/DOCS/interface-changes.rst
+++ b/DOCS/interface-changes.rst
@@ -45,6 +45,9 @@ Interface changes
but changed to alias --loop-file
- add --keep-open-pause=no
- deprecate --demuxer-max-packets
+ - change --audio-file-auto default from "exact" to "no" (mpv won't load
+ files with the same filename as the video, but different extension, as
+ audio track anymore)
--- mpv 0.24.0 ---
- deprecate --hwdec-api and replace it with --opengl-hwdec-interop.
The new option accepts both --hwdec values, as well as named backends.
diff --git a/options/options.c b/options/options.c
index fd02fc26df..229f328af1 100644
--- a/options/options.c
+++ b/options/options.c
@@ -933,7 +933,7 @@ const struct MPOpts mp_default_opts = {
.movie_aspect = -1.,
.field_dominance = -1,
.sub_auto = 0,
- .audiofile_auto = 0,
+ .audiofile_auto = -1,
.osd_bar_visible = 1,
#if HAVE_LIBASS
.ass_enabled = 1,