[FFmpeg-cvslog] Reduce probing score for flic animation files.

Carl Eugen Hoyos git at videolan.org
Wed May 15 12:03:16 CEST 2013


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed May 15 09:48:06 2013 +0200| [86ea021b3a3b3f695284e159ca2f886b1c6d4867] | committer: Carl Eugen Hoyos

Reduce probing score for flic animation files.

Fixes ticket #2567.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=86ea021b3a3b3f695284e159ca2f886b1c6d4867
---

 libavformat/flic.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/flic.c b/libavformat/flic.c
index 8d49116..2835cf5 100644
--- a/libavformat/flic.c
+++ b/libavformat/flic.c
@@ -80,7 +80,7 @@ static int flic_probe(AVProbeData *p)
         return 0;
 
 
-    return AVPROBE_SCORE_MAX;
+    return AVPROBE_SCORE_MAX - 1;
 }
 
 static int flic_read_header(AVFormatContext *s)



More information about the ffmpeg-cvslog mailing list