diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-11-10 13:10:23 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-10 13:36:59 +0100 |
commit | ef28694d363faf54cbe3d15925232739a309d2d5 (patch) | |
tree | f7bdfecd94d6481805318a214b9cec7f307c00ec /libavformat | |
parent | 9225ebd50d4f5fb88c05df59367b6b9b6e792773 (diff) | |
download | ffmpeg-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')
-rw-r--r-- | libavformat/lvfdec.c | 2 |
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; } |