fhanau / Efficient-Compression-Tool

Fast and effective C++ file optimizer
Apache License 2.0
596 stars 41 forks source link

ZopfliLZ77Optimal #43

Closed da0ka closed 7 years ago

da0ka commented 7 years ago

squeeze.c line 1088: if (options->ultra != 3) { break; } this comparison is always true. because options->ultra==2 in line 1055. so this loop can't pass over one time.

fhanau commented 7 years ago

Nice find. I corrected this w/ the latest commit. This may improve compression w/ very aggressive settings. Thank you.