OSDN Git Service

Reduce the score for the aea demuxer probing function.
authorBenjamin Larsson <banan@ludd.ltu.se>
Sun, 23 May 2010 22:01:27 +0000 (22:01 +0000)
committerBenjamin Larsson <banan@ludd.ltu.se>
Sun, 23 May 2010 22:01:27 +0000 (22:01 +0000)
Originally committed as revision 23273 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/aea.c

index 6075031..518995c 100644 (file)
@@ -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;
 }