use std::sync::Arc; use std::sync::atomic::{AtomicUsize, Ordering}; use super::Mixer; use super::AudioFilter; pub struct SoftMixer { volume: Arc } impl SoftMixer { pub fn new() -> SoftMixer { SoftMixer { volume: Arc::new(AtomicUsize::new(0xFFFF)) } } } impl Mixer for SoftMixer { fn start(&self) { } fn stop(&self) { } fn volume(&self) -> u16 { self.volume.load(Ordering::Relaxed) as u16 } fn set_volume(&self, volume: u16) { self.volume.store(volume as usize, Ordering::Relaxed); } fn get_audio_filter(&self) -> Option> { Some(Box::new(SoftVolumeApplier { volume: self.volume.clone() })) } } struct SoftVolumeApplier { volume: Arc } impl AudioFilter for SoftVolumeApplier { fn modify_stream(&self, data: &mut [i16]) { let volume = self.volume.load(Ordering::Relaxed) as u16; if volume != 0xFFFF { for x in data.iter_mut() { *x = (*x as i32 * volume as i32 / 0xFFFF) as i16; } } } }