mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
fix missdetection of mpeg-ps (ps2_interdite.mpg)
Originally committed as revision 6948 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
09c2b9421d
commit
1f51da1b4a
@ -256,7 +256,7 @@ static int mp3_read_probe(AVProbeData *p)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if(id3_match(p->buf))
|
if(id3_match(p->buf))
|
||||||
return AVPROBE_SCORE_MAX;
|
return AVPROBE_SCORE_MAX/2+1; // this must be less then mpeg-ps because some retards put id3 tage before mpeg-ps files
|
||||||
|
|
||||||
max_frames = 0;
|
max_frames = 0;
|
||||||
buf = p->buf;
|
buf = p->buf;
|
||||||
|
Loading…
Reference in New Issue
Block a user