| 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 | { |
nothing calls this directly
no test coverage detected