Ignore:
Timestamp:
May 17, 2012 8:14:05 AM (12 years ago)
Author:
nanang
Message:

Close #1506: Added PJSUA callback for SDP creation.

File:
1 edited

Legend:

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

    r4054 r4128  
    660660     */ 
    661661    void (*on_call_media_state)(pjsua_call_id call_id); 
     662 
     663 
     664    /** 
     665     * Notify application when a call has just created a local SDP (for  
     666     * initial or subsequent SDP offer/answer). Application can implement 
     667     * this callback to modify the SDP, before it is being sent and/or 
     668     * negotiated with remote SDP, for example to apply per account/call 
     669     * basis codecs priority or to add custom/proprietary SDP attributes. 
     670     * 
     671     * @param call_id   The call index. 
     672     * @param sdp       The SDP has just been created. 
     673     * @param pool      The pool instance, application should use this pool 
     674     *                  to modify the SDP. 
     675     * @param rem_sdp   The remote SDP, will be NULL if local is SDP offerer. 
     676     */ 
     677    void (*on_call_sdp_created)(pjsua_call_id call_id, 
     678                                pjmedia_sdp_session *sdp, 
     679                                pj_pool_t *pool, 
     680                                const pjmedia_sdp_session *rem_sdp); 
    662681 
    663682 
Note: See TracChangeset for help on using the changeset viewer.