| 1294 | } |
| 1295 | |
| 1296 | bool FireAudioProcessor::isSlient(juce::AudioBuffer<float> buffer) |
| 1297 | { |
| 1298 | if (buffer.getMagnitude(0, buffer.getNumSamples()) == 0) |
| 1299 | return true; |
| 1300 | else |
| 1301 | return false; |
| 1302 | } |
| 1303 | |
| 1304 | void FireAudioProcessor::setHistoryArray(int bandIndex) |
| 1305 | { |
nothing calls this directly
no outgoing calls
no test coverage detected