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()
DEBUG("Video sending disabled");
if (receiving_) {
if (receiveThread_.get())
WARN("Restarting video receiver");
if (receiveThread_.get()) {
// FIXME: this is just until we fix onhold/offhold
WARN("Not restarting video receiver");
} else {
receiveThread_.reset(new VideoReceiveThread(callID_, rxArgs_));
receiveThread_->start();
}
}
else
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