Changeset 5099 for pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
- Timestamp:
- May 20, 2015 8:46:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r5096 r5099 3890 3890 /* Update media channel with the new SDP */ 3891 3891 status = pjsua_media_channel_update(call->index, local_sdp, remote_sdp); 3892 3893 /* If this is not the initial INVITE, don't disconnect call due to 3894 * no media after SDP negotiation. 3895 */ 3896 if (status == PJMEDIA_SDPNEG_ENOMEDIA && 3897 call->inv->state == PJSIP_INV_STATE_CONFIRMED) 3898 { 3899 status = PJ_SUCCESS; 3900 } 3901 3902 /* Disconnect call after failure in media channel update */ 3892 3903 if (status != PJ_SUCCESS) { 3893 3904 pjsua_perror(THIS_FILE, "Unable to create media session",
Note: See TracChangeset
for help on using the changeset viewer.