mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
ef27b4bce3
* Enable gapless playback via runtime flag * Set gapless playback as default, use `--disable-gapless` to turn it off * Ensure sink restarts b/w tracks when gapless is disabled
45 lines
971 B
Rust
45 lines
971 B
Rust
use std::str::FromStr;
|
|
|
|
#[derive(Clone, Copy, Debug, Hash, PartialOrd, Ord, PartialEq, Eq)]
|
|
pub enum Bitrate {
|
|
Bitrate96,
|
|
Bitrate160,
|
|
Bitrate320,
|
|
}
|
|
|
|
impl FromStr for Bitrate {
|
|
type Err = ();
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
match s {
|
|
"96" => Ok(Bitrate::Bitrate96),
|
|
"160" => Ok(Bitrate::Bitrate160),
|
|
"320" => Ok(Bitrate::Bitrate320),
|
|
_ => Err(()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Default for Bitrate {
|
|
fn default() -> Bitrate {
|
|
Bitrate::Bitrate160
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct PlayerConfig {
|
|
pub bitrate: Bitrate,
|
|
pub normalisation: bool,
|
|
pub normalisation_pregain: f32,
|
|
pub gapless: bool,
|
|
}
|
|
|
|
impl Default for PlayerConfig {
|
|
fn default() -> PlayerConfig {
|
|
PlayerConfig {
|
|
bitrate: Bitrate::default(),
|
|
normalisation: false,
|
|
normalisation_pregain: 0.0,
|
|
gapless: true,
|
|
}
|
|
}
|
|
}
|