Commit d02d4d04 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/dvbsub: increase probe score

Ive not found a single false positive after some moderate testing with
probetest
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b0826b83
...@@ -60,7 +60,7 @@ static int dvbsub_probe(AVProbeData *p) ...@@ -60,7 +60,7 @@ static int dvbsub_probe(AVProbeData *p)
} }
if (max_score > 5) if (max_score > 5)
return AVPROBE_SCORE_EXTENSION/2; return AVPROBE_SCORE_EXTENSION;
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