We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83aa2b0 commit 2cec0f9Copy full SHA for 2cec0f9
src/bin/common.rs
@@ -94,10 +94,10 @@ pub fn parse_cli() -> CliOptions {
94
.default_value("false")
95
).arg(
96
Arg::with_name("TUNE")
97
- .help("Quality tuning (Will enforce partition sizes >= 8x8)")
+ .help("Quality tuning")
98
.long("tune")
99
.possible_values(&Tune::variants())
100
- .default_value("psnr")
+ .default_value("Psychovisual")
101
.case_insensitive(true)
102
103
Arg::with_name("PIXEL_RANGE")
src/encoder.rs
@@ -183,7 +183,7 @@ arg_enum!{
183
184
impl Default for Tune {
185
fn default() -> Self {
186
- Tune::Psnr
+ Tune::Psychovisual
187
}
188
189
0 commit comments