projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eacc40e
)
Make the MP3 probe weakly claim all files with ID3v2 tags to fix regressions on
author
Alex Converse
<alex.converse@gmail.com>
Thu, 5 Feb 2009 18:41:06 +0000
(18:41 +0000)
committer
Alex Converse
<alex.converse@gmail.com>
Thu, 5 Feb 2009 18:41:06 +0000
(18:41 +0000)
files with very large tags.
Originally committed as revision 17008 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/mp3.c
patch
|
blob
|
history
diff --git
a/libavformat/mp3.c
b/libavformat/mp3.c
index
21e1fd9
..
a887c3d
100644
(file)
--- a/
libavformat/mp3.c
+++ b/
libavformat/mp3.c
@@
-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;
}