[FFmpeg-cvslog] r12834 - trunk/libavformat/vc1test.c

michael subversion
Tue Apr 15 15:36:31 CEST 2008


Author: michael
Date: Tue Apr 15 15:36:31 2008
New Revision: 12834

Log:
Reduce probe score as it misdetects our flv file from the regression test
the only reason why it doesnt break them is that flv has the same score
and happens to be first in the list.


Modified:
   trunk/libavformat/vc1test.c

Modified: trunk/libavformat/vc1test.c
==============================================================================
--- trunk/libavformat/vc1test.c	(original)
+++ trunk/libavformat/vc1test.c	Tue Apr 15 15:36:31 2008
@@ -35,7 +35,7 @@ static int vc1t_probe(AVProbeData *p)
     if (p->buf[3] != 0xC5 && AV_RL32(&p->buf[4]) != 4)
         return 0;
 
-    return AVPROBE_SCORE_MAX;
+    return AVPROBE_SCORE_MAX/2;
 }
 
 static int vc1t_read_header(AVFormatContext *s,




More information about the ffmpeg-cvslog mailing list