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)]
|
#[derive(Clone, Copy, Debug, Default)]
|
||||||
pub enum InterpolationQuality {
|
pub enum InterpolationQuality {
|
||||||
#[default]
|
|
||||||
Low,
|
Low,
|
||||||
Medium,
|
Medium,
|
||||||
|
#[default]
|
||||||
High,
|
High,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -582,7 +582,7 @@ fn get_setup() -> Setup {
|
||||||
).optopt(
|
).optopt(
|
||||||
"",
|
"",
|
||||||
INTERPOLATION_QUALITY,
|
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"
|
"QUALITY"
|
||||||
).optopt(
|
).optopt(
|
||||||
"",
|
"",
|
||||||
|
|
Loading…
Reference in a new issue