Commit 39c6b06a authored by michael's avatar michael

3rd try for mpeg-es probe ...


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4938 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 48b3a5b9
......@@ -306,7 +306,7 @@ static int mpegvideo_probe(AVProbeData *p)
}
}
}
if(seq && pic && slice && seq<pic && !pspack)
if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack)
return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg
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