mirror of
https://github.com/schnaader/precomp-cpp
synced 2026-08-23 00:23:04 -04:00
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:
parent
843df069d1
commit
f939c8254b
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue