Skip to content
Snippets Groups Projects
Commit 7f5e8c9a authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #13731: videortp: hack around unimplemented video hold for now

parent cf45db71
No related branches found
No related tags found
No related merge requests found
...@@ -138,11 +138,14 @@ void VideoRtpSession::start() ...@@ -138,11 +138,14 @@ void VideoRtpSession::start()
DEBUG("Video sending disabled"); DEBUG("Video sending disabled");
if (receiving_) { if (receiving_) {
if (receiveThread_.get()) if (receiveThread_.get()) {
WARN("Restarting video receiver"); // FIXME: this is just until we fix onhold/offhold
WARN("Not restarting video receiver");
} else {
receiveThread_.reset(new VideoReceiveThread(callID_, rxArgs_)); receiveThread_.reset(new VideoReceiveThread(callID_, rxArgs_));
receiveThread_->start(); receiveThread_->start();
} }
}
else else
DEBUG("Video receiving disabled"); DEBUG("Video receiving disabled");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment