| 190 | } |
| 191 | |
| 192 | unsigned int SpectrumVisualProcessor::getFFTSize() { |
| 193 | |
| 194 | //then get the busy_lock |
| 195 | std::lock_guard < std::mutex > busy_lock(busy_run); |
| 196 | |
| 197 | if (fftSizeChanged) { |
| 198 | return newFFTSize; |
| 199 | } |
| 200 | return fftSize; |
| 201 | } |
| 202 | |
| 203 | |
| 204 | void SpectrumVisualProcessor::setHideDC(bool hideDC_in) { |
nothing calls this directly
no outgoing calls
no test coverage detected