| 3556 | } |
| 3557 | |
| 3558 | void MainWindow::audioStartTx(const QHostAddress& addr, quint16 port) |
| 3559 | { |
| 3560 | QMetaObject::invokeMethod(m_audio, [this, addr, port]() { |
| 3561 | m_audio->startTxStream(addr, port); |
| 3562 | }); |
| 3563 | } |
| 3564 | |
| 3565 | void MainWindow::audioStopTx() |
| 3566 | { |
nothing calls this directly
no test coverage detected