summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2010-05-27 20:48:19 +0000
committerReinhard Tartler <siretart@tauware.de>2010-05-27 20:48:19 +0000
commit057287c9cd34c94baa0de5935104ddcccc138f93 (patch)
tree320df3260cbedf8490ce33ad0b5c86ae99827be0
parent1746657479b09433dbe7f2cc243aa173ada4964b (diff)
Reduce the score for the aea demuxer probing function.
backport r23273 by banan Originally committed as revision 23356 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
-rw-r--r--libavformat/aea.c2
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;
}