Commit 050d79b6 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Autodetect big-endian tiff files.

parent c68098ba
...@@ -652,7 +652,8 @@ static int tiff_probe(AVProbeData *p) ...@@ -652,7 +652,8 @@ static int tiff_probe(AVProbeData *p)
{ {
const uint8_t *b = p->buf; const uint8_t *b = p->buf;
if (AV_RB32(b) == 0x49492a00) if (AV_RB32(b) == 0x49492a00 ||
AV_RB32(b) == 0x4D4D002a)
return AVPROBE_SCORE_EXTENSION + 1; return AVPROBE_SCORE_EXTENSION + 1;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment