| 383 | } |
| 384 | |
| 385 | void WaveApplet::appendScopeSamples(const QByteArray& monoFloat32Pcm, |
| 386 | int sampleRate, |
| 387 | bool tx) |
| 388 | { |
| 389 | if (!m_active) |
| 390 | return; // lean mode: drop the feed so the scope never repaints |
| 391 | if (m_waveform) |
| 392 | m_waveform->appendScopeSamples(monoFloat32Pcm, sampleRate, tx); |
| 393 | } |
| 394 | |
| 395 | void WaveApplet::setActive(bool on) |
| 396 | { |
no outgoing calls
no test coverage detected