Require at least three frames to autodetect loas.

This commit is contained in:
Carl Eugen Hoyos 2013-02-02 22:36:25 +01:00
parent 695af8eed6
commit a60530e3ee

View File

@ -55,7 +55,6 @@ static int loas_probe(AVProbeData *p)
if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
else if(max_frames>100)return AVPROBE_SCORE_MAX/2;
else if(max_frames>=3) return AVPROBE_SCORE_MAX/4;
else if(max_frames>=1) return 1;
else return 0;
}