From 86ea021b3a3b3f695284e159ca2f886b1c6d4867 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Wed, 15 May 2013 09:48:06 +0200 Subject: [PATCH] Reduce probing score for flic animation files. Fixes ticket #2567. --- libavformat/flic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/flic.c b/libavformat/flic.c index 8d49116acf..2835cf557b 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)