MCPcopy Create free account
hub / github.com/csound/csound / Framebuffer_process

Function Framebuffer_process

Opcodes/framebuffer.c:324–338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

322}
323
324int32_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
340void Framebuffer_checkArgumentSanity(CSOUND *csound, Framebuffer *self)
341{

Callers

nothing calls this directly

Tested by

no test coverage detected