player: reorder list of external cover files for optimal results

This commit is contained in:
sfan5 2020-10-25 19:17:57 +01:00
parent a832c22dac
commit c07089a250
1 changed files with 9 additions and 7 deletions

View File

@ -44,20 +44,22 @@ static const char *const audio_exts[] = {"mp3", "aac", "mka", "dts", "flac",
// Stolen from: vlc/-/blob/master/modules/meta_engine/folder.c#L40
static const char *const cover_files[] = {
"Folder.jpg",
"Folder.png",
"AlbumArtSmall.jpg",
"AlbumArt.jpg",
"Album.jpg",
".folder.png",
"cover.jpg",
"cover.png",
"cover.gif",
"front.jpg",
"front.png",
"front.gif",
"front.bmp",
"AlbumArtSmall.jpg",
"Folder.jpg",
"Folder.png",
".folder.png",
"thumb.jpg",
"front.bmp",
"front.gif",
"cover.gif",
NULL
};