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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-21 07:05:02 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-21 07:05:51 +0400
commit47540c8a68c929e46af0cc102df59d45f063f945 (patch)
treebd35f55b7f4e49cfe9349cf1737dfe33603041fd /libavformat/avs.c
parent4331484b8d70529b79e14ab22afe81b8fe203046 (diff)
avformat/avs: increase probe score to preempt conflict with avxsynth
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 5a1eb2e675..ec9198b7e5 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 55;
return 0;
}