image-rs / deflate-rs

An implementation of a DEFLATE encoder in rust
Apache License 2.0
53 stars 14 forks source link

Port fast mode from miniz #21

Open oyvindln opened 7 years ago

oyvindln commented 7 years ago

Miniz has a special fast compression function that's used when max_hash_checks is set to one. It seems to provide something in-between normal compression using hash_checks = 1 and rle mode.