Changeset 3925 for pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
- Timestamp:
- Dec 27, 2011 12:47:52 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r3901 r3925 2581 2581 2582 2582 pjsua_call_setting_default(&call_opt); 2583 call_opt.aud io_cnt = app_config.aud_cnt;2584 call_opt.vid eo_cnt = app_config.vid.vid_cnt;2583 call_opt.aud_cnt = app_config.aud_cnt; 2584 call_opt.vid_cnt = app_config.vid.vid_cnt; 2585 2585 2586 2586 pjsua_call_answer2(call_id, &call_opt, app_config.auto_answer, NULL, NULL); … … 2591 2591 2592 2592 #if PJSUA_HAS_VIDEO 2593 if (call_info.rem_offerer && call_info.rem_vid eo_cnt) {2593 if (call_info.rem_offerer && call_info.rem_vid_cnt) { 2594 2594 snprintf(notif_st, sizeof(notif_st), 2595 2595 "To %s the video, type \"vid %s\" first, " … … 2608 2608 "Press a to answer or h to reject call", 2609 2609 acc_id, 2610 call_info.rem_aud io_cnt,2611 call_info.rem_vid eo_cnt,2610 call_info.rem_aud_cnt, 2611 call_info.rem_vid_cnt, 2612 2612 notif_st, 2613 2613 call_info.remote_info.ptr, … … 2898 2898 #if PJSUA_HAS_VIDEO 2899 2899 /* Check if remote has just tried to enable video */ 2900 if (call_info.rem_offerer && call_info.rem_vid eo_cnt)2900 if (call_info.rem_offerer && call_info.rem_vid_cnt) 2901 2901 { 2902 2902 int vid_idx; … … 4239 4239 4240 4240 pjsua_call_setting_default(&call_opt); 4241 call_opt.aud io_cnt = app_config.aud_cnt;4242 call_opt.vid eo_cnt = app_config.vid.vid_cnt;4241 call_opt.aud_cnt = app_config.aud_cnt; 4242 call_opt.vid_cnt = app_config.vid.vid_cnt; 4243 4243 4244 4244 /* If user specifies URI to call, then call the URI */ … … 4281 4281 /* Update call setting */ 4282 4282 pjsua_call_setting_default(&call_opt); 4283 call_opt.aud io_cnt = app_config.aud_cnt;4284 call_opt.vid eo_cnt = app_config.vid.vid_cnt;4283 call_opt.aud_cnt = app_config.aud_cnt; 4284 call_opt.vid_cnt = app_config.vid.vid_cnt; 4285 4285 4286 4286 switch (menuin[0]) {
Note: See TracChangeset
for help on using the changeset viewer.