diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2010-05-23 22:01:27 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2010-05-23 22:01:27 +0000 |
commit | 50eae97057220f76d03690610ddb199f96c59c19 (patch) | |
tree | 770f46d21985c911476ff247064b81ee3c39e443 | |
parent | 946da73682532d86376ff42318cb98b8a3fcf058 (diff) | |
download | ffmpeg-50eae97057220f76d03690610ddb199f96c59c19.tar.gz |
Reduce the score for the aea demuxer probing function.
Originally committed as revision 23273 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/aea.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aea.c b/libavformat/aea.c index 6075031abe..518995c4b0 100644 --- a/libavformat/aea.c +++ b/libavformat/aea.c @@ -48,7 +48,7 @@ static int aea_read_probe(AVProbeData *p) * the info bytes have to be the same */ if (bsm_s == bsm_e && inb_s == inb_e) - return AVPROBE_SCORE_MAX / 2 + 1; + return AVPROBE_SCORE_MAX / 4 + 1; } return 0; } |