| 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 | }; |
no outgoing calls
no test coverage detected