(samples: Vec<i16>, sample_rate: u32, channels: u16)
| 20 | /// ~11.6 minutes of 48 kHz stereo, far past any mic capture, while keeping the |
| 21 | /// worst-case decode buffer bounded. |
| 22 | const PMIC_MAX_SAMPLES: usize = 1 << 26; |
| 23 | |
| 24 | #[derive(Clone, Debug, PartialEq)] |
| 25 | pub struct MicClip { |
| 26 | samples: Vec<i16>, |
| 27 | sample_rate: u32, |
| 28 | channels: u16, |
| 29 | } |
| 30 | |
| 31 | impl MicClip { |
nothing calls this directly
no test coverage detected