| 24 | } |
| 25 | |
| 26 | pub struct AudioSystem { |
| 27 | cx: FirewheelContext, |
| 28 | stream: CpalStream, |
| 29 | |
| 30 | samplers: Vec<Sampler>, |
| 31 | |
| 32 | peak_meter_id: NodeID, |
| 33 | peak_meter_smoother: PeakMeterSmoother<2>, |
| 34 | peak_meter_normalizer: DbMeterNormalizer, |
| 35 | } |
| 36 | |
| 37 | impl AudioSystem { |
| 38 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected