summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorGuido Cella <guido@guidocella.xyz>2021-12-03 16:59:26 +0100
committerDudemanguy <random342@airmail.cc>2022-04-21 16:42:27 +0000
commitccff82e61097751798c2a4d7de5fa84df73ab1db (patch)
tree0fe720ef8104a441c9ec9371ac24f11a7fbab71b /options/options.c
parent9d2a6dc302a3c2ed7320b66793f4ac03c2b5ce80 (diff)
downloadmpv-ccff82e61097751798c2a4d7de5fa84df73ab1db.tar.bz2
mpv-ccff82e61097751798c2a4d7de5fa84df73ab1db.tar.xz
options: make --cover-art-auto=exact the default
Now that a separate --cover-art-whitelist option exists, files like cover.jpg are loaded even without setting --cover-art-auto to fuzzy, so only load files that have exactly the media filename by default, since fuzzy loading is probably more likely to load unwanted images than to load cover art that the user intended to display, especially if you play audio files with a short filename like a.mp3.
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 650ba00b46..6d38af53b4 100644
--- a/options/options.c
+++ b/options/options.c
@@ -1033,7 +1033,7 @@ static const struct MPOpts mp_default_opts = {
.pitch_correction = 1,
.sub_auto = 0,
.audiofile_auto = -1,
- .coverart_auto = 1,
+ .coverart_auto = 0,
.coverart_whitelist = true,
.osd_bar_visible = 1,
.screenshot_template = "mpv-shot%n",