Ignore:
Timestamp:
Oct 6, 2011 6:49:09 AM (13 years ago)
Author:
ming
Message:

Re #1266:

  • Make sure that all media transports are already created and completed to fix the assertion when making call using ICE.
  • Change the callback pjsua_med_tp_state_cb to return pj_status_t (instead of void)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c

    r3780 r3796  
    14821482            pjsua_call_media *call_med = &call->media[mi]; 
    14831483 
    1484             if (call_med->med_init_cb) { 
     1484            if (call_med->med_init_cb || 
     1485                call_med->tp_st == PJSUA_MED_TP_NULL) 
     1486            { 
    14851487                pj_mutex_unlock(call->med_ch_mutex); 
    14861488                return PJ_SUCCESS; 
     
    16981700                                           security_level, sip_err_code, 
    16991701                                           async, 
    1700                                            (async? (pjsua_med_tp_state_cb) 
    1701                                            &media_channel_init_cb: NULL)); 
     1702                                           (async? &media_channel_init_cb: 
     1703                                            NULL)); 
    17021704            if (status == PJ_EPENDING) { 
    17031705                pending_med_tp = PJ_TRUE; 
Note: See TracChangeset for help on using the changeset viewer.