MCPcopy Create free account
hub / github.com/Signalsmith-Audio/reverb-example-code / process

Method process

reverb-example-code.h:29–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27 }
28
29 double process(double input) {
30 double delayed = delay.read(delaySamples);
31
32 double sum = input + delayed*decayGain;
33 delay.write(sum);
34
35 return delayed;
36 }
37};
38
39

Callers

nothing calls this directly

Calls 2

readMethod · 0.80
writeMethod · 0.80

Tested by

no test coverage detected