| 139 | } |
| 140 | |
| 141 | bool VSTEffectBase::InitializePlugin() |
| 142 | { |
| 143 | if (!mAEffect) |
| 144 | { |
| 145 | Load(); |
| 146 | } |
| 147 | |
| 148 | if (!mAEffect) |
| 149 | { |
| 150 | return false; |
| 151 | } |
| 152 | |
| 153 | return true; |
| 154 | } |
| 155 | |
| 156 | std::shared_ptr<EffectInstance> VSTEffectBase::MakeInstance() const |
| 157 | { |
no test coverage detected