summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorLeo Izen <leo.izen@gmail.com>2023-12-09 13:03:25 -0500
committersfan5 <sfan5@live.de>2023-12-14 12:36:42 +0100
commite9d0a31dfe59f5b22e243204b169145226f20a52 (patch)
tree06d69ca570a4d526d04ba25b34f31325fbdd687f /demux
parent3250f6e4473b6c0ba1be03af3c80f3141b485721 (diff)
downloadmpv-e9d0a31dfe59f5b22e243204b169145226f20a52.tar.bz2
mpv-e9d0a31dfe59f5b22e243204b169145226f20a52.tar.xz
demux/codec_tags: add jxl/jpegxl extension mapping to image codecs
Add .jxl as a file extension that maps to an image codec. Note that this will include animated JXL files, but .gif is also on that list so they are not different in that regard.
Diffstat (limited to 'demux')
-rw-r--r--demux/codec_tags.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/demux/codec_tags.c b/demux/codec_tags.c
index 55700d9ac3..923660de92 100644
--- a/demux/codec_tags.c
+++ b/demux/codec_tags.c
@@ -230,6 +230,7 @@ static const char *const type_to_codec[][2] = {
{ "xface", "xface" },
{ "xwd", "xwd" },
{ "svg", "svg" },
+ { "jxl", "jpegxl" },
{0}
};