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

Method delay_processor

example/io_delay.cpp:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20struct delay_processor : q::audio_stream
21{
22 delay_processor(
23 int device_id
24 , q::duration delay
25 , float feedback
26 )
27 : audio_stream(q::audio_device::get(device_id), 1, 2)
28 , _delay(delay, sampling_rate())
29 , _feedback(feedback)
30 {}
31
32 void process(in_channels const& in, out_channels const& out)
33 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected