use crate::Result;
pub struct SpillSuppressor {
#[allow(dead_code)]
strength: f32,
}
impl SpillSuppressor {
#[must_use]
pub fn new(strength: f32) -> Self {
Self { strength }
}
pub fn suppress(&mut self, frame: &[u8], _width: usize, _height: usize) -> Result<Vec<u8>> {
Ok(frame.to_vec())
}
}