| 509 | } |
| 510 | |
| 511 | String NodeBase::getCpuUsageInPercent() const |
| 512 | { |
| 513 | String s; |
| 514 | |
| 515 | if (lastSpecs.sampleRate > 0.0 && lastSpecs.blockSize > 0) |
| 516 | { |
| 517 | auto secondPerBuffer = cpuUsage * 0.001; |
| 518 | auto bufferDuration = (double)lastSpecs.blockSize / lastSpecs.sampleRate; |
| 519 | auto bufferRatio = secondPerBuffer / bufferDuration; |
| 520 | s << " - " << String(bufferRatio * 100.0, 1) << "%"; |
| 521 | } |
| 522 | |
| 523 | return s; |
| 524 | } |
| 525 | |
| 526 | bool NodeBase::isClone() const |
| 527 | { |