MCPcopy Create free account
hub / github.com/DISTRHO/DPF / process

Function process

distrho/src/DistrhoPluginMAPI.cpp:56–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54 // ----------------------------------------------------------------------------------------------------------------
55
56 void process(const float* const* ins, float** outs, unsigned int frames)
57 {
58 #if DISTRHO_PLUGIN_WANT_MIDI_INPUT
59 fPlugin.run(const_cast<const float**>(ins), outs, frames, nullptr, 0);
60 #else
61 fPlugin.run(const_cast<const float**>(ins), outs, frames);
62 #endif
63
64 updateParameterOutputsAndTriggers();
65 }
66
67 void setParameter(unsigned int index, float value)
68 {

Callers

nothing calls this directly

Calls 2

runMethod · 0.45

Tested by

no test coverage detected