Ignore:
Timestamp:
Dec 1, 2011 9:06:14 AM (13 years ago)
Author:
nanang
Message:

Re #1419, implement media count manipulation per call basis:

  • moved the media count setting from account setting to call setting
  • introduced pjsua_call_setting, to be used by pjsua_call_make_call() and some new APIs: pjsua_call_answer2(), pjsua_call_reinvite2(), pjsua_call_update2()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua_internal.h

    r3841 r3891  
    121121{ 
    122122    unsigned             index;     /**< Index in pjsua array.              */ 
     123    pjsua_call_setting   opt;       /**< Call setting.                      */ 
    123124    pjsip_inv_session   *inv;       /**< The invite session.                */ 
    124125    void                *user_data; /**< User/application data.             */ 
     
    163164        union { 
    164165            struct { 
    165                 unsigned         options; /**< Outgoing call options.       */ 
    166166                pjsua_msg_data  *msg_data;/**< Headers for outgoing INVITE. */ 
    167167            } out_call; 
     
    172172    } async_call;                      /**< Temporary storage for async 
    173173                                            outgoing/incoming call.         */ 
     174 
     175    pj_bool_t            rem_offerer;  /**< Was remote SDP offerer?         */ 
     176    unsigned             rem_aud_cnt;  /**< No of active audio in last remote 
     177                                            offer.                          */ 
     178    unsigned             rem_vid_cnt;  /**< No of active video in last remote 
     179                                            offer.                          */ 
    174180}; 
    175181 
Note: See TracChangeset for help on using the changeset viewer.