From 742482290f234b1d15fce67d1044889b065d3bb9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 23 Jan 2007 15:23:41 +0000 Subject: [PATCH] improve probe and give it the max score Originally committed as revision 7667 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/flvdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 4aaeae6b9f..a8338028ae 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -34,8 +34,8 @@ static int flv_probe(AVProbeData *p) if (p->buf_size < 6) return 0; d = p->buf; - if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V') { - return 50; + if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) { + return AVPROBE_SCORE_MAX; } return 0; }