[FFmpeg-cvslog] r25929 - trunk/libavformat/mp3.c

reimar subversion
Sat Dec 11 22:34:50 CET 2010


Author: reimar
Date: Sat Dec 11 22:34:50 2010
New Revision: 25929

Log:
Remove hack in MP3 probe that was meant as a work-around for large
ID3v2 tags which no longer works since ID3v2 handling was moved to
generic code.
In addition, in caused false-positives for all files starting with
one or more 0-bytes.

Modified:
   trunk/libavformat/mp3.c

Modified: trunk/libavformat/mp3.c
==============================================================================
--- trunk/libavformat/mp3.c	Sat Dec 11 13:00:41 2010	(r25928)
+++ trunk/libavformat/mp3.c	Sat Dec 11 22:34:50 2010	(r25929)
@@ -68,7 +68,6 @@ static int mp3_read_probe(AVProbeData *p
     if   (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
     else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
     else if(max_frames>=4) 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;
 //mpegps_mp3_unrecognized_format.mpg has max_frames=3



More information about the ffmpeg-cvslog mailing list