Minimal decompressed size in brute mode adjusted

- Using 1024 bytes instead of 256 bytes is much faster and still detects most relevant streams
This commit is contained in:
Christian Schneider 2017-07-30 10:28:05 +02:00
parent 843df069d1
commit f939c8254b

View file

@ -4473,7 +4473,7 @@ bool compress_file(float min_percent, float max_percent) {
saved_input_file_pos = input_file_pos;
saved_cb = cb;
if (check_inf_result(cb, -15, 256)) {
if (check_inf_result(cb, -15, 1024)) {
try_decompression_brute();
}