| 18 | static const wchar_t *UseLatencyKey = L"UseLatency"; |
| 19 | |
| 20 | bool LadspaInstance::LoadUseLatency(const EffectDefinitionInterface &effect) |
| 21 | { |
| 22 | bool result{}; |
| 23 | GetConfig(effect, PluginSettings::Shared, |
| 24 | OptionsKey, UseLatencyKey, result, true /* default value */); |
| 25 | return result; |
| 26 | } |
| 27 | |
| 28 | bool LadspaInstance::SaveUseLatency( |
| 29 | const EffectDefinitionInterface &effect, bool value) |
nothing calls this directly
no test coverage detected