mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
Delete CU_ASSERT_PTR_NOT_NULL while H264 detection
This commit is contained in:
parent
b6a9bdeed5
commit
293ed89daa
1 changed files with 2 additions and 2 deletions
|
|
@ -2811,8 +2811,8 @@ static void record_call(const char *filename, bool_t enableVideo) {
|
|||
|
||||
#ifdef VIDEO_ENABLED
|
||||
if(enableVideo) {
|
||||
if((CU_ASSERT_PTR_NOT_NULL(linphone_core_find_payload_type(marie->lc, "H264", -1, -1)))
|
||||
&& (CU_ASSERT_PTR_NOT_NULL(linphone_core_find_payload_type(pauline->lc, "H264", -1, -1)))) {
|
||||
if((linphone_core_find_payload_type(marie->lc, "H264", -1, -1) != NULL)
|
||||
&& (linphone_core_find_payload_type(pauline->lc, "H264", -1, -1) != NULL)) {
|
||||
linphone_call_params_enable_video(marieParams, TRUE);
|
||||
linphone_call_params_enable_video(paulineParams, TRUE);
|
||||
disable_all_video_codecs_except_one(marie->lc, "H264");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue