Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
d01fa0e6
Commit
d01fa0e6
authored
Oct 05, 2012
by
Ghislain MARY
Browse files
Fix RTP streams route printing.
parent
59179737
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/linphonecall.c
View file @
d01fa0e6
...
...
@@ -1575,7 +1575,6 @@ static void linphone_call_log_fill_stats(LinphoneCallLog *log, AudioStream *st){
void
linphone_call_stop_audio_stream
(
LinphoneCall
*
call
)
{
if
(
call
->
audiostream
!=
NULL
)
{
call
->
audiostream
->
ice_check_list
=
NULL
;
rtp_session_unregister_event_queue
(
call
->
audiostream
->
session
,
call
->
audiostream_app_evq
);
ortp_ev_queue_flush
(
call
->
audiostream_app_evq
);
ortp_ev_queue_destroy
(
call
->
audiostream_app_evq
);
...
...
@@ -1601,7 +1600,6 @@ void linphone_call_stop_audio_stream(LinphoneCall *call) {
void
linphone_call_stop_video_stream
(
LinphoneCall
*
call
)
{
#ifdef VIDEO_ENABLED
if
(
call
->
videostream
!=
NULL
){
call
->
videostream
->
ice_check_list
=
NULL
;
rtp_session_unregister_event_queue
(
call
->
videostream
->
session
,
call
->
videostream_app_evq
);
ortp_ev_queue_flush
(
call
->
videostream_app_evq
);
ortp_ev_queue_destroy
(
call
->
videostream_app_evq
);
...
...
Write
Preview
Markdown
is supported
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