diff vc1test.c @ 3225:d7ddbfc4aea9 libavformat

Reduce probe score as it misdetects our flv file from the regression test. The only reason why it does not break them is that flv has the same score and happens to be first in the list.
author michael
date Tue, 15 Apr 2008 13:36:31 +0000
parents d993d7e321d6
children 7a0230981402
line wrap: on
line diff
--- a/vc1test.c	Tue Apr 15 12:25:03 2008 +0000
+++ b/vc1test.c	Tue Apr 15 13:36:31 2008 +0000
@@ -35,7 +35,7 @@
     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,