2017-10-05 18:41:02 +00:00
|
|
|
use super::{Open, Sink};
|
2018-05-17 01:15:17 +00:00
|
|
|
use jack::prelude::{
|
|
|
|
client_options, AsyncClient, AudioOutPort, AudioOutSpec, Client, JackControl, Port, ProcessHandler,
|
|
|
|
ProcessScope,
|
|
|
|
};
|
2018-02-26 01:50:41 +00:00
|
|
|
use std::io;
|
|
|
|
use std::sync::mpsc::{sync_channel, Receiver, SyncSender};
|
2017-10-05 18:41:02 +00:00
|
|
|
|
|
|
|
pub struct JackSink {
|
|
|
|
send: SyncSender<i16>,
|
2018-02-26 01:50:41 +00:00
|
|
|
active_client: AsyncClient<(), JackData>,
|
2017-10-05 18:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct JackData {
|
|
|
|
rec: Receiver<i16>,
|
|
|
|
port_l: Port<AudioOutSpec>,
|
|
|
|
port_r: Port<AudioOutSpec>,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn pcm_to_f32(sample: i16) -> f32 {
|
2018-05-15 18:33:58 +00:00
|
|
|
sample as f32 / 32768.0
|
2017-10-05 18:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ProcessHandler for JackData {
|
|
|
|
fn process(&mut self, _: &Client, ps: &ProcessScope) -> JackControl {
|
|
|
|
// get output port buffers
|
|
|
|
let mut out_r = AudioOutPort::new(&mut self.port_r, ps);
|
|
|
|
let mut out_l = AudioOutPort::new(&mut self.port_l, ps);
|
|
|
|
let buf_r: &mut [f32] = &mut out_r;
|
|
|
|
let buf_l: &mut [f32] = &mut out_l;
|
|
|
|
// get queue iterator
|
|
|
|
let mut queue_iter = self.rec.try_iter();
|
|
|
|
|
|
|
|
let buf_size = buf_r.len();
|
|
|
|
for i in 0..buf_size {
|
|
|
|
buf_r[i] = pcm_to_f32(queue_iter.next().unwrap_or(0));
|
|
|
|
buf_l[i] = pcm_to_f32(queue_iter.next().unwrap_or(0));
|
|
|
|
}
|
|
|
|
JackControl::Continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Open for JackSink {
|
|
|
|
fn open(client_name: Option<String>) -> JackSink {
|
|
|
|
info!("Using jack sink!");
|
|
|
|
|
|
|
|
let client_name = client_name.unwrap_or("librespot".to_string());
|
|
|
|
let (client, _status) = Client::new(&client_name[..], client_options::NO_START_SERVER).unwrap();
|
2018-03-23 05:13:01 +00:00
|
|
|
let ch_r = client.register_port("out_0", AudioOutSpec::default()).unwrap();
|
|
|
|
let ch_l = client.register_port("out_1", AudioOutSpec::default()).unwrap();
|
2017-10-05 18:41:02 +00:00
|
|
|
// buffer for samples from librespot (~10ms)
|
2018-02-26 01:50:41 +00:00
|
|
|
let (tx, rx) = sync_channel(2 * 1024 * 4);
|
|
|
|
let jack_data = JackData {
|
|
|
|
rec: rx,
|
|
|
|
port_l: ch_l,
|
|
|
|
port_r: ch_r,
|
|
|
|
};
|
2017-10-05 18:41:02 +00:00
|
|
|
let active_client = AsyncClient::new(client, (), jack_data).unwrap();
|
|
|
|
|
2018-02-26 01:50:41 +00:00
|
|
|
JackSink {
|
|
|
|
send: tx,
|
|
|
|
active_client: active_client,
|
|
|
|
}
|
|
|
|
}
|
2017-10-05 18:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Sink for JackSink {
|
|
|
|
fn start(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stop(&mut self) -> io::Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write(&mut self, data: &[i16]) -> io::Result<()> {
|
|
|
|
for s in data.iter() {
|
|
|
|
let res = self.send.send(*s);
|
|
|
|
if res.is_err() {
|
|
|
|
error!("jackaudio: cannot write to channel");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|