# HG changeset patch # User michael # Date 1208266591 0 # Node ID d7ddbfc4aea9b9c20a446d1c79ef47cbb8298711 # Parent 0546606089c63d0949f945be5a8dd86b8976d4d8 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. diff -r 0546606089c6 -r d7ddbfc4aea9 vc1test.c --- 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,