(&self)
| 28 | // refcount instead of copying the whole sample buffer. |
| 29 | samples: Arc<[i16]>, |
| 30 | sample_rate: u32, |
| 31 | channels: u16, |
| 32 | } |
| 33 | |
| 34 | impl MicClip { |
| 35 | /// Creates a clip and panics when its format cannot be encoded losslessly. |
| 36 | /// |
no test coverage detected