summaryrefslogtreecommitdiff
path: root/libavformat/lvfdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-10 13:10:23 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-11-10 13:36:59 +0100
commitef28694d363faf54cbe3d15925232739a309d2d5 (patch)
treef7bdfecd94d6481805318a214b9cec7f307c00ec /libavformat/lvfdec.c
parent9225ebd50d4f5fb88c05df59367b6b9b6e792773 (diff)
downloadffmpeg-ef28694d363faf54cbe3d15925232739a309d2d5.tar.gz
avformat/lvfdec: increase the score for odd channels to max/8
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/lvfdec.c')
-rw-r--r--libavformat/lvfdec.c2
1 files changed, 1 insertions, 1 deletions
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;
}