Commit a35e30b6 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/libgme: decrease score by 1, fixes probetest failure

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1b3d3a9c
......@@ -174,7 +174,7 @@ static int probe_gme(AVProbeData *p)
// Reads 4 bytes - returns "" if unknown format.
if (gme_identify_header(p->buf)[0]) {
if (p->buf_size < 16384)
return AVPROBE_SCORE_MAX / 4 + 1;
return AVPROBE_SCORE_MAX / 4 ;
else
return AVPROBE_SCORE_MAX / 2;
}
......
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