Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
7f5e8c9a
Commit
7f5e8c9a
authored
Jul 20, 2012
by
Tristan Matthews
Browse files
* #13731: videortp: hack around unimplemented video hold for now
parent
cf45db71
Changes
1
Show whitespace changes
Inline
Side-by-side
daemon/src/video/video_rtp_session.cpp
View file @
7f5e8c9a
...
...
@@ -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"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment