Changeset 2060
- Timestamp:
- Jun 26, 2008 3:46:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r2039 r2060 2522 2522 pjsua_perror(THIS_FILE, "SDP negotiation has failed", status); 2523 2523 2524 /* Do not deinitialize media since this may be a re-INVITE or 2525 * UPDATE (which in this case the media should not get affected 2526 * by the failed re-INVITE/UPDATE). The media will be shutdown 2527 * when call is disconnected anyway. 2528 */ 2524 2529 /* Stop/destroy media, if any */ 2525 pjsua_media_channel_deinit(call->index);2530 /*pjsua_media_channel_deinit(call->index);*/ 2526 2531 2527 2532 /* Disconnect call if we're not in the middle of initializing an … … 2571 2576 status); 2572 2577 call_disconnect(inv, PJSIP_SC_NOT_ACCEPTABLE_HERE); 2573 pjsua_media_channel_deinit(call->index); 2578 /* No need to deinitialize; media will be shutdown when call 2579 * state is disconnected anyway. 2580 */ 2581 /*pjsua_media_channel_deinit(call->index);*/ 2574 2582 PJSUA_UNLOCK(); 2575 2583 return;
Note: See TracChangeset
for help on using the changeset viewer.