VoIP v1 implementation (#1161)
* Initial commit for VoIP v1 implementation * Added draft of event handlers for voip methods * Added event handlers for VoIP events, added rejectCall, added version tracking for call version for V0 and V1 compatibility * Added call events to the general message pipeline. Modified Call Reject mechanism * Added message delegates for new events. Modified hidden events. Updated handle events. * Updated implementation to keep track of calls on other devices * Fixed linting * Fixed code warnings * Fixed minor bugs * fixed ci * Added acceptNegotiation method definition when missing gstreamer * Fixed warnings * Fixed linting
This commit is contained in:
parent
8a4bb32b4a
commit
ac48c33286
19 changed files with 583 additions and 79 deletions
|
|
@ -363,6 +363,9 @@ ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QObject *parent)
|
|||
connectCallMessage<mtx::events::voip::CallCandidates>();
|
||||
connectCallMessage<mtx::events::voip::CallAnswer>();
|
||||
connectCallMessage<mtx::events::voip::CallHangUp>();
|
||||
connectCallMessage<mtx::events::voip::CallSelectAnswer>();
|
||||
connectCallMessage<mtx::events::voip::CallReject>();
|
||||
connectCallMessage<mtx::events::voip::CallNegotiate>();
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue