]> sjero.net Git - linphone/commitdiff
Fix RTP streams route printing.
authorGhislain MARY <ghislain.mary@belledonne-communications.com>
Fri, 5 Oct 2012 08:24:44 +0000 (10:24 +0200)
committerGhislain MARY <ghislain.mary@belledonne-communications.com>
Fri, 5 Oct 2012 09:31:54 +0000 (11:31 +0200)
coreapi/linphonecall.c

index a23e39f2f030d48d597818dcc9b22093bb500a0d..88e7d01a9865ce07d46abcf0e6a4c17e4800ec06 100644 (file)
@@ -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);