summary refs log tree commit diff
path: root/src/WebRTCSession.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/WebRTCSession.h')
-rw-r--r--src/WebRTCSession.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WebRTCSession.h b/src/WebRTCSession.h

index fc637193..7c77a94d 100644 --- a/src/WebRTCSession.h +++ b/src/WebRTCSession.h
@@ -57,7 +57,7 @@ public: bool isRemoteVideoRecvOnly() const { return isRemoteVideoRecvOnly_; } bool isRemoteVideoSendOnly() const { return isRemoteVideoSendOnly_; } - bool createOffer(webrtc::CallType); + bool createOffer(webrtc::CallType, uint32_t shareWindowId); bool acceptOffer(const std::string &sdp); bool acceptAnswer(const std::string &sdp); void acceptICECandidates(const std::vector<mtx::events::msg::CallCandidates::Candidate> &); @@ -100,6 +100,7 @@ private: GstElement *webrtc_ = nullptr; unsigned int busWatchId_ = 0; std::vector<std::string> turnServers_; + uint32_t shareWindowId_ = 0; bool init(std::string *errorMessage = nullptr); bool startPipeline(int opusPayloadType, int vp8PayloadType);