| 322 | } |
| 323 | |
| 324 | int32_t Framebuffer_process(CSOUND *csound, Framebuffer *self) |
| 325 | { |
| 326 | if (self->inputType == KRATE_ARRAY) { |
| 327 | |
| 328 | |
| 329 | Framebuffer_processFrameInAudioOut(csound, self); |
| 330 | } |
| 331 | else if (self->inputType == ARATE_VAR) { |
| 332 | |
| 333 | Framebuffer_processAudioInFrameOut(csound, self); |
| 334 | } |
| 335 | |
| 336 | |
| 337 | return OK; |
| 338 | } |
| 339 | |
| 340 | void Framebuffer_checkArgumentSanity(CSOUND *csound, Framebuffer *self) |
| 341 | { |
nothing calls this directly
no test coverage detected