diff --git a/libavformat/icodec.c b/libavformat/icodec.c index fa308da722..4c038e9614 100644 --- a/libavformat/icodec.c +++ b/libavformat/icodec.c @@ -45,7 +45,7 @@ typedef struct { static int probe(AVProbeData *p) { if (AV_RL16(p->buf) == 0 && AV_RL16(p->buf + 2) == 1 && AV_RL16(p->buf + 4)) - return AVPROBE_SCORE_MAX / 3; + return AVPROBE_SCORE_MAX / 4; return 0; }