[FFmpeg-cvslog] avformat/avs: increase probe score to preempt conflict with avxsynth
Michael Niedermayer
git at videolan.org
Thu Mar 21 04:45:50 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 21 04:05:02 2013 +0100| [47540c8a68c929e46af0cc102df59d45f063f945] | committer: Michael Niedermayer
avformat/avs: increase probe score to preempt conflict with avxsynth
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=47540c8a68c929e46af0cc102df59d45f063f945
---
libavformat/avs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/avs.c b/libavformat/avs.c
index 5a1eb2e..ec9198b 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;
}
More information about the ffmpeg-cvslog
mailing list