Browse code

Reduce the score for the aea demuxer probing function.

Originally committed as revision 23273 to svn://svn.ffmpeg.org/ffmpeg/trunk

Benjamin Larsson authored on 2010/05/24 07:01:27
Showing 1 changed files
... ...
@@ -48,7 +48,7 @@ static int aea_read_probe(AVProbeData *p)
48 48
          * the info bytes have to be the same
49 49
          */
50 50
         if (bsm_s == bsm_e && inb_s == inb_e)
51
-            return AVPROBE_SCORE_MAX / 2 + 1;
51
+            return AVPROBE_SCORE_MAX / 4 + 1;
52 52
     }
53 53
     return 0;
54 54
 }