Commit 77c0b149 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/mpegts: Return 0 if the probe function does not detect mpegts.

Reduces console spamming on debug level.
parent dee79438
...@@ -2439,7 +2439,7 @@ static int mpegts_probe(AVProbeData *p) ...@@ -2439,7 +2439,7 @@ static int mpegts_probe(AVProbeData *p)
#define CHECK_BLOCK 100 #define CHECK_BLOCK 100
if (check_count < CHECK_COUNT) if (check_count < CHECK_COUNT)
return AVERROR_INVALIDDATA; return 0;
for (i = 0; i<check_count; i+=CHECK_BLOCK) { for (i = 0; i<check_count; i+=CHECK_BLOCK) {
int left = FFMIN(check_count - i, CHECK_BLOCK); int left = FFMIN(check_count - i, CHECK_BLOCK);
...@@ -2459,7 +2459,7 @@ static int mpegts_probe(AVProbeData *p) ...@@ -2459,7 +2459,7 @@ static int mpegts_probe(AVProbeData *p)
if (sumscore > 6) return AVPROBE_SCORE_MAX + sumscore - CHECK_COUNT; if (sumscore > 6) return AVPROBE_SCORE_MAX + sumscore - CHECK_COUNT;
else if (maxscore > 6) return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT; else if (maxscore > 6) return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT;
else else
return AVERROR_INVALIDDATA; return 0;
} }
/* return the 90kHz PCR and the extension for the 27MHz PCR. return /* return the 90kHz PCR and the extension for the 27MHz PCR. return
......
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