Fix TIFF file signature in big endian

Summary: see https://www.adobe.io/content/dam/udp/en/open/standards/tiff/TIFF6.pdf page 13

Reviewers: raster, bu5hm4n

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12258
This commit is contained in:
Vincent Torri 2021-04-17 10:59:14 +01:00 committed by Carsten Haitzler (Rasterman)
parent 4263c08760
commit 287834b0da
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static const Mimetype_Content_Matcher matchers[] = {
{{0x47, 0x49, 0x46, 0x38, 0x37, 0x61}, 6, "image/gif"},
{{0x47, 0x49, 0x46, 0x38, 0x39, 0x61}, 6, "image/gif"},
{{0x49, 0x49, 0x2A, 00}, 4, "image/tiff"},
{{0x49, 0x4D, 0x00, 0x2A}, 4, "image/tiff"},
{{0x4D, 0x4D, 0x00, 0x2A}, 4, "image/tiff"},
{{0},0, NULL}
};