summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorGuido Cella <guido@guidocella.xyz>2021-03-22 10:21:52 +0100
committerDudemanguy <random342@airmail.cc>2021-05-27 18:19:16 +0000
commit029ff1049b4f82d2a0ac9caec7b1314e25049971 (patch)
treeb07a66704b7cd426f83870495b26315dcc940af0 /player
parent89684976acdfae7fdcec9a1b1819ab7f19012332 (diff)
downloadmpv-029ff1049b4f82d2a0ac9caec7b1314e25049971.tar.bz2
mpv-029ff1049b4f82d2a0ac9caec7b1314e25049971.tar.xz
player: load cover art with the media filename
Closes #8666.
Diffstat (limited to 'player')
-rw-r--r--player/external_files.c28
1 files changed, 17 insertions, 11 deletions
diff --git a/player/external_files.c b/player/external_files.c
index 06585bf18f..449e62d623 100644
--- a/player/external_files.c
+++ b/player/external_files.c
@@ -42,6 +42,10 @@ static const char *const audio_exts[] = {"mp3", "aac", "mka", "dts", "flac",
"wv",
NULL};
+static const char *const image_exts[] = {"jpg", "jpeg", "png", "gif", "bmp",
+ "webp",
+ NULL};
+
// Stolen from: vlc/-/blob/master/modules/meta_engine/folder.c#L40
// sorted by priority (descending)
static const char *const cover_files[] = {
@@ -79,18 +83,19 @@ static int test_ext(bstr ext)
return STREAM_SUB;
if (test_ext_list(ext, audio_exts))
return STREAM_AUDIO;
+ if (test_ext_list(ext, image_exts))
+ return STREAM_VIDEO;
return -1;
}
-static int test_cover_filename(bstr fname, int *priority)
+static int test_cover_filename(bstr fname)
{
for (int n = 0; cover_files[n]; n++) {
if (bstrcasecmp(bstr0(cover_files[n]), fname) == 0) {
- *priority = MP_ARRAY_SIZE(cover_files) - n;
- return STREAM_VIDEO;
+ return MP_ARRAY_SIZE(cover_files) - n;
}
}
- return -1;
+ return 0;
}
bool mp_might_be_subtitle_file(const char *filename)
@@ -191,10 +196,7 @@ static void append_dir_subtitles(struct mpv_global *global, struct MPOpts *opts,
talloc_steal(tmpmem2, dename.start);
// check what it is (most likely)
- int cover_prio = 0;
int type = test_ext(tmp_fname_ext);
- if (type < 0)
- type = test_cover_filename(dename, &cover_prio);
char **langs = NULL;
int fuzz = -1;
switch (type) {
@@ -218,9 +220,13 @@ static void append_dir_subtitles(struct mpv_global *global, struct MPOpts *opts,
// higher prio -> auto-selection may prefer it (0 = not loaded)
int prio = 0;
- if (bstrcmp(tmp_fname_trim, f_fname_trim) == 0)
+ if (bstrcmp(tmp_fname_trim, f_fname_trim) == 0 &&
+ (type != STREAM_VIDEO || (fuzz != 1 && bstrcmp(dename, f_fname) != 0)))
prio |= 32; // exact movie name match
+ if (type == STREAM_VIDEO)
+ goto cover_art;
+
bstr lang = {0};
if (bstr_startswith(tmp_fname_trim, f_fname_trim)) {
int start = 0;
@@ -249,9 +255,9 @@ static void append_dir_subtitles(struct mpv_global *global, struct MPOpts *opts,
if (!limit_fuzziness && fuzz >= 2)
prio |= 1;
- // cover art: just accept it
- if (type == STREAM_VIDEO && fuzz >= 1)
- prio = cover_prio;
+ cover_art:
+ if (type == STREAM_VIDEO && fuzz >= 1 && prio == 0)
+ prio = test_cover_filename(dename);
mp_dbg(log, "Potential external file: \"%s\" Priority: %d\n",
de->d_name, prio);