summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-04-15 13:36:31 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-04-15 13:36:31 +0000
commita8f0c9c5b98890423b949f5a2dd474d2393fc524 (patch)
tree6c5f55c05ac8fc93aa43685e436ae1ffd0b61b19
parent7344dac4ad24b758f50bc730f98816546f364c08 (diff)
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. Originally committed as revision 12834 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/vc1test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vc1test.c b/libavformat/vc1test.c
index c8340179cf..531fd8515b 100644
--- a/libavformat/vc1test.c
+++ b/libavformat/vc1test.c
@@ -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,