fix misdetection of out.ac3
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 5 Aug 2007 02:17:06 +0000 (02:17 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 5 Aug 2007 02:17:06 +0000 (02:17 +0000)
Originally committed as revision 9930 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mpeg.c

index 1f2254db973b4004d82960c97cbd2ab4072df3dc..0f8270a4fcb18c1d99b7926469bebbb323cd6251 100644 (file)
@@ -74,7 +74,7 @@ static int mpegps_probe(AVProbeData *p)
         return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg
     if((priv1 || vid || audio) && (priv1+vid+audio)*9 <= pspack*10)
         return AVPROBE_SCORE_MAX/2+2; // +1 for .mpg
-    if((!!vid ^ !!audio) && (audio+vid > 1) && !sys && !pspack) /* PES stream */
+    if((!!vid ^ !!audio) && (audio+vid > 1) && !sys && !pspack && p->buf_size>2048) /* PES stream */
         return AVPROBE_SCORE_MAX/2+2;
 
     //02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1