Skip to content

Commit

Permalink
avformat/bintext: Reduce detection for random .bin files as it more l…
Browse files Browse the repository at this point in the history
…ikely is not a multimedia related file

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  • Loading branch information
michaelni committed May 22, 2018
1 parent 1083808 commit 919e373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavformat/bintext.c
Expand Up @@ -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)
Expand Down

0 comments on commit 919e373

Please sign in to comment.