=======================================================================
| 208 | |
| 209 | //======================================================================= |
| 210 | void BTrack::processAudioFrame (double* frame) |
| 211 | { |
| 212 | // calculate the onset detection function sample for the frame |
| 213 | double sample = odf.calculateOnsetDetectionFunctionSample (frame); |
| 214 | |
| 215 | // process the new onset detection function sample in the beat tracking algorithm |
| 216 | processOnsetDetectionFunctionSample (sample); |
| 217 | } |
| 218 | |
| 219 | //======================================================================= |
| 220 | void BTrack::processOnsetDetectionFunctionSample (double newSample) |
no test coverage detected