| 5169 | } |
| 5170 | |
| 5171 | SpectralNR::WisdomResult AudioEngine::generateWisdom( |
| 5172 | SpectralNR::WisdomProgressCb progress, |
| 5173 | SpectralNR::WisdomCancelCb shouldCancel) |
| 5174 | { |
| 5175 | const auto result = SpectralNR::generateWisdom(wisdomDir().toStdString(), |
| 5176 | std::move(progress), |
| 5177 | std::move(shouldCancel)); |
| 5178 | logNr2WisdomGenerationSummary(result); |
| 5179 | return result; |
| 5180 | } |
| 5181 | |
| 5182 | void AudioEngine::setNr2Enabled(bool on) |
| 5183 | { |
nothing calls this directly
no test coverage detected