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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/73/head
Michael Niedermayer 11 years ago
parent 9225ebd50d
commit ef28694d36
  1. 2
      libavformat/lvfdec.c

@ -29,7 +29,7 @@ static int lvf_probe(AVProbeData *p)
return 0; return 0;
if (!AV_RL32(p->buf + 16) || AV_RL32(p->buf + 16) > 256) if (!AV_RL32(p->buf + 16) || AV_RL32(p->buf + 16) > 256)
return 0; return AVPROBE_SCORE_MAX / 8;
return AVPROBE_SCORE_EXTENSION; return AVPROBE_SCORE_EXTENSION;
} }

Loading…
Cancel
Save