player: add tiff/tif (TIFF) to list of image extensions

This commit is contained in:
AtticFinder65536 2022-05-22 23:46:53 +10:00 committed by Leo Izen
parent bd46f050fe
commit a4f0db051a
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ static const char *const audio_exts[] = {"mp3", "aac", "mka", "dts", "flac",
NULL};
static const char *const image_exts[] = {"jpg", "jpeg", "png", "gif", "bmp",
"webp", "jxl",
"webp", "jxl", "tiff", "tif",
NULL};
// Stolen from: vlc/-/blob/master/modules/meta_engine/folder.c#L40