提交 2a3caca2 编写于 作者: M Michael Niedermayer

Make h261 and mpegvideo probe a little more robust so they dont fail with

slightly different probetest.

Originally committed as revision 19856 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 ff19d438
...@@ -326,7 +326,7 @@ static int mpegvideo_probe(AVProbeData *p) ...@@ -326,7 +326,7 @@ static int mpegvideo_probe(AVProbeData *p)
} }
} }
if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes) if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !pes)
return AVPROBE_SCORE_MAX/2+1; // +1 for .mpg return pic>1 ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
return 0; return 0;
} }
#endif #endif
...@@ -515,7 +515,7 @@ static int h261_probe(AVProbeData *p) ...@@ -515,7 +515,7 @@ static int h261_probe(AVProbeData *p)
} }
} }
} }
if(valid_psc > 2*invalid_psc + 4){ if(valid_psc > 2*invalid_psc + 6){
return 50; return 50;
}else if(valid_psc > 2*invalid_psc + 2) }else if(valid_psc > 2*invalid_psc + 2)
return 25; return 25;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册