| 236 | } |
| 237 | |
| 238 | void Processor::onPitch(function<void(float)> callback) { |
| 239 | auto detector = getPitchDetector(); |
| 240 | detector->onPitch.add(callback); |
| 241 | } |
| 242 | |
| 243 | void Processor::onPitchWithConfidence(function<void(float, float)> callback) { |
| 244 | auto detector = getPitchDetector(); |
no test coverage detected