[FFmpeg-cvslog] r23356 - in branches/0.6: . libavformat/aea.c

siretart subversion
Thu May 27 22:48:19 CEST 2010


Author: siretart
Date: Thu May 27 22:48:19 2010
New Revision: 23356

Log:
Reduce the score for the aea demuxer probing function.


backport r23273 by banan

Modified:
   branches/0.6/   (props changed)
   branches/0.6/libavformat/aea.c

Modified: branches/0.6/libavformat/aea.c
==============================================================================
--- branches/0.6/libavformat/aea.c	Thu May 27 22:47:48 2010	(r23355)
+++ branches/0.6/libavformat/aea.c	Thu May 27 22:48:19 2010	(r23356)
@@ -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;
 }



More information about the ffmpeg-cvslog mailing list