| 517 | |
| 518 | #if 0 |
| 519 | static int groups(ScopeData* gScope, double h) |
| 520 | { |
| 521 | int count = 0; |
| 522 | for (int i = 1; i < gScope->mPot / 4; i++) |
| 523 | { |
| 524 | if (gScope->fft1[i - 1] < h && gScope->fft1[i] > h) |
| 525 | count++; |
| 526 | } |
| 527 | return count; |
| 528 | } |
| 529 | |
| 530 | static void detect_fundamentals(ScopeData* gScope) |
| 531 | { |
no outgoing calls
no test coverage detected