mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/lvfdec: increase the score for odd channels to max/8
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9225ebd50d
commit
ef28694d36
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue