Commit 9352a389 authored by alexc's avatar alexc

Make the MP3 probe weakly claim all files with ID3v2 tags to fix regressions on

files with very large tags.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17008 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent cc0a73e5
......@@ -391,6 +391,7 @@ static int mp3_read_probe(AVProbeData *p)
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(buf0!=p->buf) return AVPROBE_SCORE_MAX/4-1;
else if(max_frames>=1) return 1;
else 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