summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAtticFinder65536 <theatticfinder2390@protonmail.com>2022-05-22 23:46:53 +1000
committerLeo Izen <leo.izen@gmail.com>2022-06-07 06:28:34 -0400
commita4f0db051abf5eb34497437fa991a5da694e45f8 (patch)
treec489b87f6e1685db8c50402a8c7e0f7f3c2df5d6
parentbd46f050fecdb0956457a3a1afddeaefb1c5b6f0 (diff)
downloadmpv-a4f0db051abf5eb34497437fa991a5da694e45f8.tar.bz2
mpv-a4f0db051abf5eb34497437fa991a5da694e45f8.tar.xz
player: add tiff/tif (TIFF) to list of image extensions
-rw-r--r--player/external_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/external_files.c b/player/external_files.c
index 45c555a34b..d1bc4e53df 100644
--- a/player/external_files.c
+++ b/player/external_files.c
@@ -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