| 161 | } |
| 162 | |
| 163 | void Processor::onEnergy(function<void(float)> callback) { |
| 164 | auto detector = getEnergyAnalyzer(); |
| 165 | detector->onEnergy.add(callback); |
| 166 | } |
| 167 | |
| 168 | void Processor::onNormalizedEnergy(function<void(float)> callback) { |
| 169 | auto detector = getEnergyAnalyzer(); |
no test coverage detected