(&mut self, sample: i16)
| 422 | fn unzigzag_i16(value: u16) -> i16 { |
| 423 | ((value >> 1) as i16) ^ (-((value & 1) as i16)) |
| 424 | } |
| 425 | |
| 426 | #[derive(Clone, Debug)] |
| 427 | pub struct MicSettings { |
| 428 | pub max_seconds: f32, |
| 429 | pub denoise: MicDenoiseSettings, |
| 430 | /// Backend device name from [`mic_devices`]. `None` or blank picks the OS default. |
no test coverage detected