From ef28694d363faf54cbe3d15925232739a309d2d5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 10 Nov 2013 13:10:23 +0100 Subject: avformat/lvfdec: increase the score for odd channels to max/8 Signed-off-by: Michael Niedermayer --- libavformat/lvfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/lvfdec.c') diff --git a/libavformat/lvfdec.c b/libavformat/lvfdec.c index d4bad12cc3..1ff67c83f5 100644 --- a/libavformat/lvfdec.c +++ b/libavformat/lvfdec.c @@ -29,7 +29,7 @@ static int lvf_probe(AVProbeData *p) return 0; if (!AV_RL32(p->buf + 16) || AV_RL32(p->buf + 16) > 256) - return 0; + return AVPROBE_SCORE_MAX / 8; return AVPROBE_SCORE_EXTENSION; } -- cgit v1.2.3