diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-08 22:24:55 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-08 23:54:25 +0100 |
commit | bf0ac7aa696237a9a3834ac6c065462786770e54 (patch) | |
tree | d38cc6b302091689db5d8a551eaaec15e7839a14 | |
parent | fd791675d45d4a356fe0a95a1b31709535c86c01 (diff) | |
download | ffmpeg-bf0ac7aa696237a9a3834ac6c065462786770e54.tar.gz |
mpegvideo_probe: reduce score for invalid streams
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mpegvideodec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mpegvideodec.c b/libavformat/mpegvideodec.c index 1b724bc2b9..11e4bd70e8 100644 --- a/libavformat/mpegvideodec.c +++ b/libavformat/mpegvideodec.c @@ -51,7 +51,8 @@ static int mpegvideo_probe(AVProbeData *p) } } 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; } |