More help notes on fast and zopfli

This commit is contained in:
Andrew 2023-05-25 08:48:01 +12:00
parent 8dafc756cd
commit 2ea12fc9d1

View file

@ -182,7 +182,7 @@ fn main() {
) )
.arg( .arg(
Arg::new("fast") Arg::new("fast")
.help("Use fast filter evaluation") .help("Use fast filter evaluation (helpful when you have more filters enabled than CPU cores)")
.long("fast") .long("fast")
.action(ArgAction::SetTrue), .action(ArgAction::SetTrue),
) )
@ -244,7 +244,7 @@ fn main() {
) )
.arg( .arg(
Arg::new("zopfli") Arg::new("zopfli")
.help("Use the slower but better compressing Zopfli algorithm") .help("Use the slow but stronger Zopfli compressor (recommended use is with all filters and `--fast` enabled)")
.short('Z') .short('Z')
.long("zopfli") .long("zopfli")
.action(ArgAction::SetTrue), .action(ArgAction::SetTrue),