Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2013-01-06 09:51:22 +0400
committerPeter Ross <pross@xvid.org>2013-01-06 09:51:57 +0400
commitc44b4ee6ea1efaceb5afbba3a01946d0007db654 (patch)
tree7acbab42eed9e5a22f21f18fddecc63a4052d086 /libavformat/frmdec.c
parente797f22efa81a65d2b40e44a31cc1d73e0b14ef6 (diff)
frmdec: reduce probe score to reflect test accuracy (and pass probetest)
Diffstat (limited to 'libavformat/frmdec.c')
-rw-r--r--libavformat/frmdec.c2
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;
}