mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 04:28:49 +03:00
Fixed formatting
This commit is contained in:
parent
a31cb9cc82
commit
4c8ce911bd
5 changed files with 16 additions and 10 deletions
|
@ -580,8 +580,8 @@ if(USE_BUNDLED_MTXCLIENT)
|
|||
include(FetchContent)
|
||||
FetchContent_Declare(
|
||||
MatrixClient
|
||||
GIT_REPOSITORY https://github.com/r0hit05/mtxclient.git
|
||||
GIT_TAG 9743ddde60151c2d0e3fd622d5e3fe469813f5d9
|
||||
GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
|
||||
GIT_TAG c2824dae5050882872a6c3f5677f3309a60511be
|
||||
)
|
||||
set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "")
|
||||
set(BUILD_LIB_TESTS OFF CACHE INTERNAL "")
|
||||
|
|
|
@ -203,10 +203,10 @@ modules:
|
|||
buildsystem: cmake-ninja
|
||||
name: mtxclient
|
||||
sources:
|
||||
- commit: 9743ddde60151c2d0e3fd622d5e3fe469813f5d9
|
||||
- commit: c2824dae5050882872a6c3f5677f3309a60511be
|
||||
#tag: v0.7.0
|
||||
type: git
|
||||
url: https://github.com/r0hit05/mtxclient.git
|
||||
url: https://github.com/Nheko-Reborn/mtxclient.git
|
||||
- config-opts:
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
- -DLMDBXX_INCLUDE_DIR=.deps/lmdbxx
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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…
Reference in a new issue