| 873 | } |
| 874 | |
| 875 | bool Processor::isMonoChannelActive(int ch) { |
| 876 | std::lock_guard<std::mutex> lock(m_monoChannelsMtx); |
| 877 | return m_monoChannels.isOutputActive(ch); |
| 878 | } |
| 879 | |
| 880 | void Processor::setProcessingPrecision(AudioProcessor::ProcessingPrecision prec) { |
| 881 | traceScope(); |
nothing calls this directly
no test coverage detected