1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avformat/img2dec: improve xbm probing

This commit is contained in:
Paul B Mahol 2021-02-05 22:33:32 +01:00
parent d99cc17825
commit e28b6e0448

View File

@ -1033,6 +1033,9 @@ static int pam_probe(const AVProbeData *p)
static int xbm_probe(const AVProbeData *p)
{
if (!memcmp(p->buf, "/* XBM X10 format */", 20))
return AVPROBE_SCORE_MAX;
if (!memcmp(p->buf, "#define", 7))
return AVPROBE_SCORE_MAX - 1;
return 0;