| 19 | struct delay_processor : q::audio_stream |
| 20 | { |
| 21 | delay_processor( |
| 22 | float* wav |
| 23 | , float sps |
| 24 | , q::duration delay |
| 25 | , float feedback |
| 26 | ) |
| 27 | : audio_stream(0, 2, sps) |
| 28 | , _wav(wav) |
| 29 | , _delay(delay, sps) |
| 30 | , _feedback(feedback) |
| 31 | {} |
| 32 | |
| 33 | void process(out_channels const& out) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected