avformat/lvfdec: increase the score for odd channels to max/8

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-11-10 13:10:23 +01:00
parent 9225ebd50d
commit ef28694d36
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}