Fixed formatting
This commit is contained in:
parent
a31cb9cc82
commit
4c8ce911bd
5 changed files with 16 additions and 10 deletions
|
|
@ -44,6 +44,7 @@ using namespace mtx::events;
|
|||
using namespace mtx::events::voip;
|
||||
|
||||
using webrtc::CallType;
|
||||
//! Session Description Object
|
||||
typedef RTCSessionDescriptionInit SDO;
|
||||
|
||||
namespace {
|
||||
|
|
@ -66,7 +67,9 @@ CallManager::CallManager(QObject *parent)
|
|||
this,
|
||||
[this](const std::string &sdp, const std::vector<CallCandidates::Candidate> &candidates) {
|
||||
nhlog::ui()->debug("WebRTC: call id: {} - sending offer", callid_);
|
||||
emit newMessage(roomid_, CallInvite{callid_, partyid_, SDO{sdp, SDO::Type::Offer}, "0", timeoutms_, invitee_});
|
||||
emit newMessage(
|
||||
roomid_,
|
||||
CallInvite{callid_, partyid_, SDO{sdp, SDO::Type::Offer}, "0", timeoutms_, invitee_});
|
||||
emit newMessage(roomid_, CallCandidates{callid_, partyid_, candidates, "0"});
|
||||
std::string callid(callid_);
|
||||
QTimer::singleShot(timeoutms_, this, [this, callid]() {
|
||||
|
|
@ -299,7 +302,8 @@ CallManager::handleEvent(const RoomEvent<CallInvite> &callInviteEvent)
|
|||
if (isOnCall() || roomInfo.member_count != 2) {
|
||||
emit newMessage(
|
||||
QString::fromStdString(callInviteEvent.room_id),
|
||||
CallHangUp{callInviteEvent.content.call_id, partyid_, "0", CallHangUp::Reason::InviteTimeOut});
|
||||
CallHangUp{
|
||||
callInviteEvent.content.call_id, partyid_, "0", CallHangUp::Reason::InviteTimeOut});
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,7 +67,8 @@ public slots:
|
|||
void toggleMicMute();
|
||||
void toggleLocalPiP() { session_.toggleLocalPiP(); }
|
||||
void acceptInvite();
|
||||
void hangUp(mtx::events::voip::CallHangUp::Reason = mtx::events::voip::CallHangUp::Reason::User);
|
||||
void
|
||||
hangUp(mtx::events::voip::CallHangUp::Reason = mtx::events::voip::CallHangUp::Reason::User);
|
||||
QStringList windowList();
|
||||
void previewWindow(unsigned int windowIndex) const;
|
||||
|
||||
|
|
@ -92,8 +93,8 @@ private:
|
|||
QString callPartyDisplayName_;
|
||||
QString callPartyAvatarUrl_;
|
||||
std::string callid_;
|
||||
std::string partyid_ = "";
|
||||
std::string invitee_ = "";
|
||||
std::string partyid_ = "";
|
||||
std::string invitee_ = "";
|
||||
const uint32_t timeoutms_ = 120000;
|
||||
webrtc::CallType callType_ = webrtc::CallType::VOICE;
|
||||
bool haveCallInvite_ = false;
|
||||
|
|
|
|||
|
|
@ -1151,7 +1151,8 @@ WebRTCSession::acceptAnswer(const std::string &)
|
|||
}
|
||||
|
||||
void
|
||||
WebRTCSession::acceptICECandidates(const std::vector<mtx::events::voip::CallCandidates::Candidate> &)
|
||||
WebRTCSession::acceptICECandidates(
|
||||
const std::vector<mtx::events::voip::CallCandidates::Candidate> &)
|
||||
{}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue