summaryrefslogtreecommitdiff
path: root/libavformat/frmdec.c
diff options
context:
space:
mode:
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;
}