Commit 50eae970 authored by Benjamin Larsson's avatar Benjamin Larsson

Reduce the score for the aea demuxer probing function.

Originally committed as revision 23273 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 946da736
...@@ -48,7 +48,7 @@ static int aea_read_probe(AVProbeData *p) ...@@ -48,7 +48,7 @@ static int aea_read_probe(AVProbeData *p)
* the info bytes have to be the same * the info bytes have to be the same
*/ */
if (bsm_s == bsm_e && inb_s == inb_e) if (bsm_s == bsm_e && inb_s == inb_e)
return AVPROBE_SCORE_MAX / 2 + 1; return AVPROBE_SCORE_MAX / 4 + 1;
} }
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment