Commit bf0ac7aa authored by Michael Niedermayer's avatar Michael Niedermayer

mpegvideo_probe: reduce score for invalid streams

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fd791675
...@@ -51,7 +51,8 @@ static int mpegvideo_probe(AVProbeData *p) ...@@ -51,7 +51,8 @@ static int mpegvideo_probe(AVProbeData *p)
} }
} }
if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !apes) if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !apes)
return (pic>1 && !vpes) ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg if(vpes) return AVPROBE_SCORE_MAX/8;
else return pic>1 ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
return 0; return 0;
} }
......
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