davisking / dlib

A toolkit for making real world machine learning and data analysis applications in C++
http://dlib.net
Boost Software License 1.0
13.57k stars 3.38k forks source link

Add missing magic number for JPEG XL #2924

Closed arrufat closed 8 months ago

arrufat commented 8 months ago

For some reason, JPEG XL can have two magic numbers. Adding the one that was missing here.

arrufat commented 8 months ago

This is the reason:

JXL_SIG_CODESTREAM

A valid JPEG XL codestream signature was found, that is a JPEG XL image without container.

JXL_SIG_CONTAINER

A valid container signature was found, that is a JPEG XL image embedded in a box format container.
davisking commented 8 months ago

Sweet, thanks.