Commit c44b4ee6 authored by Peter Ross's avatar Peter Ross

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

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