Browse Source

frmdec: reduce probe score to reflect test accuracy (and pass probetest)

tags/n1.1
Peter Ross 12 years ago
parent
commit
c44b4ee6ea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/frmdec.c

+ 1
- 1
libavformat/frmdec.c View File

@@ -45,7 +45,7 @@ static int frm_read_probe(AVProbeData *p)
if (p->buf_size > 8 &&
p->buf[0] == 'F' && p->buf[1] == 'R' && p->buf[2] == 'M' &&
AV_RL16(&p->buf[4]) && AV_RL16(&p->buf[6]))
return AVPROBE_SCORE_MAX / 2;
return AVPROBE_SCORE_MAX / 4;
return 0;
}



Loading…
Cancel
Save