Commit 47540c8a authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/avs: increase probe score to preempt conflict with avxsynth

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4331484b
...@@ -50,7 +50,7 @@ static int avs_probe(AVProbeData * p) ...@@ -50,7 +50,7 @@ static int avs_probe(AVProbeData * p)
d = p->buf; d = p->buf;
if (d[0] == 'w' && d[1] == 'W' && d[2] == 0x10 && d[3] == 0) if (d[0] == 'w' && d[1] == 'W' && d[2] == 0x10 && d[3] == 0)
return 50; return 55;
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment