Commit 919e3737 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/bintext: Reduce detection for random .bin files as it more likely is...

avformat/bintext: Reduce detection for random .bin files as it more likely is not a multimedia related file
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 1083808c
......@@ -163,7 +163,7 @@ static int bin_probe(AVProbeData *p)
if (par.width * par.height * 2 / (8*16) == p->buf_size)
return AVPROBE_SCORE_MAX / 2;
return 1;
return 0;
}
if (sauce)
......
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