Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 11 years ago
parent
commit
a35e30b672
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/libgme.c

+ 1
- 1
libavformat/libgme.c View File

@@ -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;
}


Loading…
Cancel
Save