| 1573 | } |
| 1574 | |
| 1575 | static void VST_FUNCTION_INTERFACE vst_processReplacingCallback(vst_effect* const effect, |
| 1576 | const float* const* const inputs, |
| 1577 | float** const outputs, |
| 1578 | const int32_t sampleFrames) |
| 1579 | { |
| 1580 | if (PluginVst* const pluginPtr = getEffectPlugin(effect)) |
| 1581 | pluginPtr->vst_processReplacing(const_cast<const float**>(inputs), outputs, sampleFrames); |
| 1582 | } |
| 1583 | |
| 1584 | // -------------------------------------------------------------------------------------------------------------------- |
| 1585 |
nothing calls this directly
no test coverage detected