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
30ac60ec
Commit
30ac60ec
authored
Jul 23, 2012
by
Tristan Matthews
Browse files
* #13731: video: reset threads if disabled
parent
556bbb97
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/video/video_rtp_session.cpp
View file @
30ac60ec
...
...
@@ -136,6 +136,7 @@ void VideoRtpSession::start()
sendThread_
->
start
();
}
else
{
DEBUG
(
"Video sending disabled"
);
sendThread_
.
reset
();
}
if
(
receiving_
)
{
...
...
@@ -146,6 +147,7 @@ void VideoRtpSession::start()
receiveThread_
->
start
();
}
else
{
DEBUG
(
"Video receiving disabled"
);
receiveThread_
.
reset
();
}
}
...
...
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