Commit 950c3a59 authored by michael's avatar michael

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.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12834 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 43ea868f
...@@ -35,7 +35,7 @@ static int vc1t_probe(AVProbeData *p) ...@@ -35,7 +35,7 @@ static int vc1t_probe(AVProbeData *p)
if (p->buf[3] != 0xC5 && AV_RL32(&p->buf[4]) != 4) if (p->buf[3] != 0xC5 && AV_RL32(&p->buf[4]) != 4)
return 0; return 0;
return AVPROBE_SCORE_MAX; return AVPROBE_SCORE_MAX/2;
} }
static int vc1t_read_header(AVFormatContext *s, static int vc1t_read_header(AVFormatContext *s,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment