Commit ef28694d authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9225ebd5
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment