mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/mpeg: update comment on probe score
Found-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
69c34a6ac9
commit
f7bbe0f414
|
@ -101,7 +101,7 @@ static int mpegps_probe(AVProbeData *p)
|
||||||
|
|
||||||
if (sys > invalid && sys * 9 <= pspack * 10)
|
if (sys > invalid && sys * 9 <= pspack * 10)
|
||||||
return (audio > 12 || vid > 3 || pspack > 2) ? AVPROBE_SCORE_EXTENSION + 2
|
return (audio > 12 || vid > 3 || pspack > 2) ? AVPROBE_SCORE_EXTENSION + 2
|
||||||
: AVPROBE_SCORE_EXTENSION / 2 + 1; // 1 more than .mpg
|
: AVPROBE_SCORE_EXTENSION / 2 + 1; // 1 more than mp3
|
||||||
if (pspack > invalid && (priv1 + vid + audio) * 10 >= pspack * 9)
|
if (pspack > invalid && (priv1 + vid + audio) * 10 >= pspack * 9)
|
||||||
return pspack > 2 ? AVPROBE_SCORE_EXTENSION + 2
|
return pspack > 2 ? AVPROBE_SCORE_EXTENSION + 2
|
||||||
: AVPROBE_SCORE_EXTENSION / 2; // 1 more than .mpg
|
: AVPROBE_SCORE_EXTENSION / 2; // 1 more than .mpg
|
||||||
|
|
Loading…
Reference in New Issue