OSDN Git Service

avformat/avs: increase probe score to preempt conflict with avxsynth
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Mar 2013 03:05:02 +0000 (04:05 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 21 Mar 2013 03:05:51 +0000 (04:05 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/avs.c

index 5a1eb2e..ec9198b 100644 (file)
@@ -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;
 }