mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Merge pull request #188 from thekr1s/linear-volume-control
Add optional linear volume contol
This commit is contained in:
commit
085f76162f
3 changed files with 30 additions and 6 deletions
|
@ -24,6 +24,7 @@ use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
pub struct SpircTask {
|
pub struct SpircTask {
|
||||||
player: Player,
|
player: Player,
|
||||||
mixer: Box<Mixer>,
|
mixer: Box<Mixer>,
|
||||||
|
linear_volume: bool,
|
||||||
|
|
||||||
sequence: SeqGenerator<u32>,
|
sequence: SeqGenerator<u32>,
|
||||||
|
|
||||||
|
@ -170,7 +171,7 @@ fn initial_device_state(config: ConnectConfig, volume: u16) -> DeviceState {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn volume_to_mixer(volume: u16) -> u16 {
|
fn calc_logarithmic_volume(volume: u16) -> u16 {
|
||||||
// Volume conversion taken from https://www.dr-lex.be/info-stuff/volumecontrols.html#ideal2
|
// Volume conversion taken from https://www.dr-lex.be/info-stuff/volumecontrols.html#ideal2
|
||||||
// Convert the given volume [0..0xffff] to a dB gain
|
// Convert the given volume [0..0xffff] to a dB gain
|
||||||
// We assume a dB range of 60dB.
|
// We assume a dB range of 60dB.
|
||||||
|
@ -192,6 +193,15 @@ fn volume_to_mixer(volume: u16) -> u16 {
|
||||||
val
|
val
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn volume_to_mixer(volume: u16, linear_volume: bool) -> u16 {
|
||||||
|
if linear_volume {
|
||||||
|
debug!("linear volume: {}", volume);
|
||||||
|
volume
|
||||||
|
} else {
|
||||||
|
calc_logarithmic_volume(volume)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl Spirc {
|
impl Spirc {
|
||||||
pub fn new(
|
pub fn new(
|
||||||
config: ConnectConfig,
|
config: ConnectConfig,
|
||||||
|
@ -224,12 +234,15 @@ impl Spirc {
|
||||||
let (cmd_tx, cmd_rx) = mpsc::unbounded();
|
let (cmd_tx, cmd_rx) = mpsc::unbounded();
|
||||||
|
|
||||||
let volume = config.volume as u16;
|
let volume = config.volume as u16;
|
||||||
|
let linear_volume = config.linear_volume;
|
||||||
|
|
||||||
let device = initial_device_state(config, volume);
|
let device = initial_device_state(config, volume);
|
||||||
mixer.set_volume(volume_to_mixer(volume as u16));
|
mixer.set_volume(volume_to_mixer(volume as u16, linear_volume));
|
||||||
|
|
||||||
let mut task = SpircTask {
|
let mut task = SpircTask {
|
||||||
player: player,
|
player: player,
|
||||||
mixer: mixer,
|
mixer: mixer,
|
||||||
|
linear_volume: linear_volume,
|
||||||
|
|
||||||
sequence: SeqGenerator::new(1),
|
sequence: SeqGenerator::new(1),
|
||||||
|
|
||||||
|
@ -517,8 +530,10 @@ impl SpircTask {
|
||||||
|
|
||||||
MessageType::kMessageTypeVolume => {
|
MessageType::kMessageTypeVolume => {
|
||||||
self.device.set_volume(frame.get_volume());
|
self.device.set_volume(frame.get_volume());
|
||||||
self.mixer
|
self.mixer.set_volume(volume_to_mixer(
|
||||||
.set_volume(volume_to_mixer(frame.get_volume() as u16));
|
frame.get_volume() as u16,
|
||||||
|
self.linear_volume,
|
||||||
|
));
|
||||||
self.notify(None);
|
self.notify(None);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -642,7 +657,8 @@ impl SpircTask {
|
||||||
volume = 0xFFFF;
|
volume = 0xFFFF;
|
||||||
}
|
}
|
||||||
self.device.set_volume(volume);
|
self.device.set_volume(volume);
|
||||||
self.mixer.set_volume(volume_to_mixer(volume as u16));
|
self.mixer
|
||||||
|
.set_volume(volume_to_mixer(volume as u16, self.linear_volume));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_volume_down(&mut self) {
|
fn handle_volume_down(&mut self) {
|
||||||
|
@ -651,7 +667,8 @@ impl SpircTask {
|
||||||
volume = 0;
|
volume = 0;
|
||||||
}
|
}
|
||||||
self.device.set_volume(volume as u32);
|
self.device.set_volume(volume as u32);
|
||||||
self.mixer.set_volume(volume_to_mixer(volume as u16));
|
self.mixer
|
||||||
|
.set_volume(volume_to_mixer(volume as u16, self.linear_volume));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_end_of_track(&mut self) {
|
fn handle_end_of_track(&mut self) {
|
||||||
|
|
|
@ -79,4 +79,5 @@ pub struct ConnectConfig {
|
||||||
pub name: String,
|
pub name: String,
|
||||||
pub device_type: DeviceType,
|
pub device_type: DeviceType,
|
||||||
pub volume: i32,
|
pub volume: i32,
|
||||||
|
pub linear_volume: bool,
|
||||||
}
|
}
|
||||||
|
|
|
@ -166,6 +166,11 @@ fn setup(args: &[String]) -> Setup {
|
||||||
"normalisation-pregain",
|
"normalisation-pregain",
|
||||||
"Pregain (dB) applied by volume normalisation",
|
"Pregain (dB) applied by volume normalisation",
|
||||||
"PREGAIN",
|
"PREGAIN",
|
||||||
|
)
|
||||||
|
.optflag(
|
||||||
|
"",
|
||||||
|
"linear-volume",
|
||||||
|
"increase volume linear instead of logarithmic.",
|
||||||
);
|
);
|
||||||
|
|
||||||
let matches = match opts.parse(&args[1..]) {
|
let matches = match opts.parse(&args[1..]) {
|
||||||
|
@ -282,6 +287,7 @@ fn setup(args: &[String]) -> Setup {
|
||||||
name: name,
|
name: name,
|
||||||
device_type: device_type,
|
device_type: device_type,
|
||||||
volume: initial_volume,
|
volume: initial_volume,
|
||||||
|
linear_volume: matches.opt_present("linear-volume"),
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue