MCPcopy Create free account
hub / github.com/cycfi/q / delay_processor

Method delay_processor

example/delay.cpp:21–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19struct 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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected