mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Autodetect big-endian tiff files.
This commit is contained in:
parent
c68098ba4a
commit
050d79b6dd
@ -652,7 +652,8 @@ static int tiff_probe(AVProbeData *p)
|
||||
{
|
||||
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 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user