mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Change Interpolation Quality to default to High
This commit is contained in:
parent
25425dab5c
commit
c4dc7347c7
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
|
@ -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(
|
||||
"",
|
||||
|
|
Loading…
Reference in a new issue