diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-05-15 09:48:06 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-05-15 11:20:39 +0200 |
commit | 86ea021b3a3b3f695284e159ca2f886b1c6d4867 (patch) | |
tree | 1b73fd365399a5beb75d67f9fdda342bdfa68adc /libavformat | |
parent | ff4680922fc4f1295081da45173e9a71d141a045 (diff) | |
download | ffmpeg-86ea021b3a3b3f695284e159ca2f886b1c6d4867.tar.gz |
Reduce probing score for flic animation files.
Fixes ticket #2567.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/flic.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |