| 1564 | } |
| 1565 | |
| 1566 | static void VST_FUNCTION_INTERFACE vst_processCallback(vst_effect* const effect, |
| 1567 | const float* const* const inputs, |
| 1568 | float** const outputs, |
| 1569 | const int32_t sampleFrames) |
| 1570 | { |
| 1571 | if (PluginVst* const pluginPtr = getEffectPlugin(effect)) |
| 1572 | pluginPtr->vst_processReplacing(const_cast<const float**>(inputs), outputs, sampleFrames); |
| 1573 | } |
| 1574 | |
| 1575 | static void VST_FUNCTION_INTERFACE vst_processReplacingCallback(vst_effect* const effect, |
| 1576 | const float* const* const inputs, |
nothing calls this directly
no test coverage detected