From 00c4861f13d9ec302348cfa1e2d4f1c796e9e86b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 14 Jun 2016 01:36:15 +0200 Subject: [PATCH] avformat/mpegts: adjust probe score for low check_count Fixes mis-detection of tiff as mpegts Fixes Ticket5565 Signed-off-by: Michael Niedermayer --- libavformat/mpegts.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 7d78c41d3c..4d1bc6d427 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -2508,8 +2508,10 @@ static int mpegts_probe(AVProbeData *p) ff_dlog(0, "TS score: %d %d\n", sumscore, maxscore); - if (check_count >= CHECK_COUNT && sumscore > 6) { + if (check_count > CHECK_COUNT && sumscore > 6) { return AVPROBE_SCORE_MAX + sumscore - CHECK_COUNT; + } else if (check_count >= CHECK_COUNT && sumscore > 6) { + return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT; } else if (check_count >= CHECK_COUNT && maxscore > 6) { return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT; } else if (sumscore > 6) {