Skip to content
Snippets Groups Projects
Commit 2db97113 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

return a slightly larger score if we find more than 500 valid mp3 frames in a row

Originally committed as revision 11148 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5ef5501b
No related branches found
No related tags found
No related merge requests found
......@@ -420,6 +420,7 @@ static int mp3_read_probe(AVProbeData *p)
first_frames= frames;
}
if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
else if(max_frames>500)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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment