Skip to content

Commit 3eae5ce

Browse files
authored
Merge pull request #195 from lpetre/fix_jxl_header
Fix JXL ISOBMFF format
2 parents 0c7f219 + 2c4c89a commit 3eae5ce

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

filetype/types/image.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ def match(self, buf):
6868
buf[0] == 0x00 and
6969
buf[1] == 0x00 and
7070
buf[2] == 0x00 and
71-
buf[3] == 0x00 and
72-
buf[4] == 0x0C and
73-
buf[5] == 0x4A and
74-
buf[6] == 0x58 and
75-
buf[7] == 0x4C and
76-
buf[8] == 0x20 and
77-
buf[9] == 0x0D and
71+
buf[3] == 0x0C and
72+
buf[4] == 0x4A and
73+
buf[5] == 0x58 and
74+
buf[6] == 0x4C and
75+
buf[7] == 0x20 and
76+
buf[8] == 0x0D and
77+
buf[9] == 0x0A and
7878
buf[10] == 0x87 and
7979
buf[11] == 0x0A)
8080
)

0 commit comments

Comments
 (0)