librespot/src/mixer/mod.rs

24 lines
558 B
Rust
Raw Normal View History

pub trait Mixer {
fn start(&self);
fn stop(&self);
fn set_volume(&self, volume: u16);
fn volume(&self) -> u16;
2017-01-27 13:20:31 +00:00
fn get_audio_filter(&self) -> Option<Box<AudioFilter + Send>> {
None
}
}
2017-01-27 13:20:31 +00:00
pub trait AudioFilter {
2017-02-21 21:49:45 +00:00
fn modify_stream(&self, data: &mut [i16]);
2017-01-25 21:49:18 +00:00
}
2017-02-21 21:49:45 +00:00
pub mod softmixer;
use self::softmixer::SoftMixer;
2017-01-27 13:20:31 +00:00
pub fn find<T: AsRef<str>>(name: Option<T>) -> Option<Box<Mixer + Send>> {
2017-02-21 21:49:45 +00:00
match name.as_ref().map(AsRef::as_ref) {
None | Some("softvol") => Some(Box::new(SoftMixer::new())),
_ => None,
}
}