preflate-rs 0.6.3

Decompresses existing DEFLATE streams to allow for better compression (eg with ZStandard) while allowing the exact original binary DEFLATE stream to be recreated by detecting the parameters used during compression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This module is useed to estimate the parameters used to compress this DEFLATE stream. If we get these
//! parameters right, it will minimize or even eliminate the need to encode any corrections when we
//! recompress the stream.

mod complevel_estimator;
mod depth_estimator;
mod preflate_stream_info;

pub mod add_policy_estimator;
pub mod preflate_parameter_estimator;
pub mod preflate_parse_config;