From c4dc7347c7df5e686f8c9374b3373c92eae0cd86 Mon Sep 17 00:00:00 2001 From: JasonLG1979 Date: Fri, 30 Jun 2023 13:55:34 -0500 Subject: [PATCH] Change Interpolation Quality to default to High --- playback/src/config.rs | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playback/src/config.rs b/playback/src/config.rs index ca17837a..0a44853f 100644 --- a/playback/src/config.rs +++ b/playback/src/config.rs @@ -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, } diff --git a/src/main.rs b/src/main.rs index 8e6d7fad..0b7d10ae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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( "",