mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
avformat/mp3dec: check the number of frames per buffer size
Fixes misdetection of issue3327-libc-2.17.so Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b3b505c73b
commit
a8bc175dd9
@ -90,10 +90,10 @@ static int mp3_read_probe(AVProbeData *p)
|
||||
// issues with MPEG-files!
|
||||
if (first_frames>=4) return AVPROBE_SCORE_EXTENSION + 1;
|
||||
else if(max_frames>200)return AVPROBE_SCORE_EXTENSION;
|
||||
else if(max_frames>=4) return AVPROBE_SCORE_EXTENSION / 2;
|
||||
else if(max_frames>=4 && max_frames >= p->buf_size/10000) return AVPROBE_SCORE_EXTENSION / 2;
|
||||
else if(ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC) && 2*ff_id3v2_tag_len(buf0) >= p->buf_size)
|
||||
return p->buf_size < PROBE_BUF_MAX ? AVPROBE_SCORE_EXTENSION / 4 : AVPROBE_SCORE_EXTENSION - 2;
|
||||
else if(max_frames>=1) return 1;
|
||||
else if(max_frames>=1 && max_frames >= p->buf_size/10000) return 1;
|
||||
else return 0;
|
||||
//mpegps_mp3_unrecognized_format.mpg has max_frames=3
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user