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

Method process

reverb-example-code.h:234–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232 }
233
234 Array process(Array input) {
235 Array diffuse = diffuser.process(input);
236 Array longLasting = feedback.process(diffuse);
237 Array output;
238 for (int c = 0; c < channels; ++c) {
239 output[c] = dry*input[c] + wet*longLasting[c];
240 }
241 return output;
242 }
243};

Callers 4

processMethod · 0.45
processMethod · 0.45
monoProcessorMethod · 0.45
multiProcessorMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected