Change Interpolation Quality to default to High

This commit is contained in:
JasonLG1979 2023-06-30 13:55:34 -05:00
parent 25425dab5c
commit c4dc7347c7
2 changed files with 2 additions and 2 deletions

View file

@ -35,9 +35,9 @@ const FOUR_TIMES_PI: f64 = 4.0 * std::f64::consts::PI;
#[derive(Clone, Copy, Debug, Default)]
pub enum InterpolationQuality {
#[default]
Low,
Medium,
#[default]
High,
}

View file

@ -582,7 +582,7 @@ fn get_setup() -> Setup {
).optopt(
"",
INTERPOLATION_QUALITY,
"Interpolation Quality to use if Resampling {Low|Medium|High}. Defaults to Low.",
"Interpolation Quality to use if Resampling {Low|Medium|High}. Defaults to High.",
"QUALITY"
).optopt(
"",