From e9d0a31dfe59f5b22e243204b169145226f20a52 Mon Sep 17 00:00:00 2001 From: Leo Izen Date: Sat, 9 Dec 2023 13:03:25 -0500 Subject: 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. --- demux/codec_tags.c | 1 + 1 file changed, 1 insertion(+) 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} }; -- cgit v1.2.3