Commit 7585b047 authored by michael's avatar michael

Slighty tweak mp3 probe threshold to prevent probetest from complaining.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19849 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0388e233
......@@ -60,7 +60,7 @@ static int mp3_read_probe(AVProbeData *p)
if(buf == buf0)
first_frames= frames;
}
if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
if (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
else if(buf0!=p->buf) return AVPROBE_SCORE_MAX/4-1;
......
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