From d3c85607755ca12132536f8c6f20e52e350aa4be Mon Sep 17 00:00:00 2001 From: Sandrine Avakian Date: Fri, 18 Dec 2015 15:42:10 +0100 Subject: [PATCH] Fixing tests for AVPF implicit : using policy (creating parameters for call to avoid using default parameters ). --- tester/call_tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tester/call_tester.c b/tester/call_tester.c index 368edcc8f..20fbec2e8 100644 --- a/tester/call_tester.c +++ b/tester/call_tester.c @@ -2199,7 +2199,7 @@ static void video_call_AVPF_to_implicit_AVPF(void) LinphoneCoreManager* caller = linphone_core_manager_new(transport_supported(LinphoneTransportTcp) ? "pauline_rc" : "pauline_tcp_rc"); linphone_core_set_avpf_mode(caller->lc,LinphoneAVPFEnabled); - video_call_base_3(caller,callee,FALSE,LinphoneMediaEncryptionNone,TRUE,TRUE); + video_call_base_3(caller,callee,TRUE,LinphoneMediaEncryptionNone,TRUE,TRUE); end_call(caller,callee); linphone_core_manager_destroy(callee); @@ -2213,7 +2213,7 @@ static void video_call_implicit_AVPF_to_AVPF(void) LinphoneCoreManager* caller = linphone_core_manager_new(transport_supported(LinphoneTransportTcp) ? "pauline_rc" : "pauline_tcp_rc"); linphone_core_set_avpf_mode(callee->lc,LinphoneAVPFEnabled); - video_call_base_3(caller,callee,FALSE,LinphoneMediaEncryptionNone,TRUE,TRUE); + video_call_base_3(caller,callee,TRUE,LinphoneMediaEncryptionNone,TRUE,TRUE); end_call(caller,callee); linphone_core_manager_destroy(callee);