| 176 | } |
| 177 | |
| 178 | std::shared_ptr<EffectInstance> AudioUnitEffectBase::MakeInstance() const |
| 179 | { |
| 180 | bool useLatency; |
| 181 | GetConfig(*this, PluginSettings::Shared, OptionsKey, UseLatencyKey, |
| 182 | useLatency, true); |
| 183 | |
| 184 | return std::make_shared<AudioUnitInstance>(*this, mComponent, mParameters, |
| 185 | GetSymbol().Internal(), mAudioIns, mAudioOuts, useLatency); |
| 186 | } |
| 187 | |
| 188 | bool AudioUnitEffectBase::InitializePlugin() |
| 189 | { |