summaryrefslogtreecommitdiff
path: root/libavformat/avs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/avs.c')
-rw-r--r--libavformat/avs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avs.c b/libavformat/avs.c
index 8a3ad388db..b96a122c13 100644
--- a/libavformat/avs.c
+++ b/libavformat/avs.c
@@ -50,7 +50,7 @@ static int avs_probe(AVProbeData * p)
d = p->buf;
if (d[0] == 'w' && d[1] == 'W' && d[2] == 0x10 && d[3] == 0)
- return 50;
+ return AVPROBE_SCORE_EXTENSION;
return 0;
}