diff options
author | Peter Ross <pross@xvid.org> | 2013-01-06 16:51:22 +1100 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2013-01-06 16:51:57 +1100 |
commit | c44b4ee6ea1efaceb5afbba3a01946d0007db654 (patch) | |
tree | 7acbab42eed9e5a22f21f18fddecc63a4052d086 /libavformat/frmdec.c | |
parent | e797f22efa81a65d2b40e44a31cc1d73e0b14ef6 (diff) | |
download | ffmpeg-c44b4ee6ea1efaceb5afbba3a01946d0007db654.tar.gz |
frmdec: reduce probe score to reflect test accuracy (and pass probetest)
Diffstat (limited to 'libavformat/frmdec.c')
-rw-r--r-- | libavformat/frmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/frmdec.c b/libavformat/frmdec.c index b9b3ed73fc..1dc2358aa7 100644 --- a/libavformat/frmdec.c +++ b/libavformat/frmdec.c @@ -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; } |