Skip to content
Snippets Groups Projects
Commit c3dda3f5 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

qtwrapper: add peerHold event

Refs #77211

Change-Id: I524c14c57d060d93235e5492561318c2f384956b
parent cc3b0c63
No related branches found
No related tags found
No related merge requests found
......@@ -202,6 +202,13 @@ public:
Q_EMIT onRtcpReportReceived(QString(callID.c_str()), convertStringInt(report));
});
}),
exportable_callback<CallSignal::PeerHold>(
[this] (const std::string &callID, bool state) {
QTimer::singleShot(0, [this,callID, state] {
LOG_DRING_SIGNAL2("peerHold",QString(callID.c_str()), state);
Q_EMIT peerHold(QString(callID.c_str()), state);
});
}),
exportable_callback<CallSignal::AudioMuted>(
[this] (const std::string &callID, bool state) {
QTimer::singleShot(0, [this,callID, state] {
......@@ -478,6 +485,7 @@ Q_SIGNALS: // SIGNALS
void confirmGoClear(const QString &callID);
void audioMuted(const QString &callID, bool state);
void videoMuted(const QString &callID, bool state);
void peerHold(const QString &callID, bool state);
};
namespace org {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment