mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
lavf/tty: Reduce probe score to fix ffmetadata auto-detection.
Fixes ticket #8568.
This commit is contained in:
parent
8f222573e9
commit
b601e24ab3
@ -65,7 +65,7 @@ static int read_probe(const AVProbeData *p)
|
|||||||
for (int i = 8; i < p->buf_size; i++)
|
for (int i = 8; i < p->buf_size; i++)
|
||||||
cnt += !!isansicode(p->buf[i]);
|
cnt += !!isansicode(p->buf[i]);
|
||||||
|
|
||||||
return (cnt * 100LL / p->buf_size) * (cnt > 400) *
|
return (cnt * 99LL / p->buf_size) * (cnt > 400) *
|
||||||
!!av_match_ext(p->filename, tty_extensions);
|
!!av_match_ext(p->filename, tty_extensions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user