Skip to content

Fix JXL ISOBMFF format #195

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions filetype/types/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ def match(self, buf):
buf[0] == 0x00 and
buf[1] == 0x00 and
buf[2] == 0x00 and
buf[3] == 0x00 and
buf[4] == 0x0C and
buf[5] == 0x4A and
buf[6] == 0x58 and
buf[7] == 0x4C and
buf[8] == 0x20 and
buf[9] == 0x0D and
buf[3] == 0x0C and
buf[4] == 0x4A and
buf[5] == 0x58 and
buf[6] == 0x4C and
buf[7] == 0x20 and
buf[8] == 0x0D and
buf[9] == 0x0A and
buf[10] == 0x87 and
buf[11] == 0x0A)
)
Expand Down
Loading