Ignore:
Timestamp:
Dec 28, 2016 3:40:07 AM (7 years ago)
Author:
nanang
Message:

Re #1900: More merged from trunk (r5512 mistakenly contains merged changes in third-party dir only).

Location:
pjproject/branches/projects/uwp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/uwp

  • pjproject/branches/projects/uwp/pjsip/include/pjsua2/account.hpp

    r4957 r5513  
    7171 
    7272    /** 
     73     * Additional parameters that will be appended in the Contact header 
     74     * of the registration requests. This will be appended after 
     75     * \a AccountSipConfig.contactParams; 
     76     * 
     77     * The parameters should be preceeded by semicolon, and all strings must 
     78     * be properly escaped. Example: 
     79     *   ";my-param=X;another-param=Hi%20there" 
     80     */ 
     81    string              contactParams; 
     82 
     83    /** 
    7384     * Optional interval for registration, in seconds. If the value is zero, 
    7485     * default interval will be used (PJSUA_REG_INTERVAL, 300 seconds). 
     
    831842     */ 
    832843    unsigned                    rateControlBandwidth; 
     844 
     845    /** 
     846     * The number of keyframe to be sent after the stream is created. 
     847     * 
     848     * Default: PJMEDIA_VID_STREAM_START_KEYFRAME_CNT 
     849     */ 
     850    unsigned                        startKeyframeCount; 
     851 
     852    /** 
     853     * The keyframe sending interval after the stream is created. 
     854     * 
     855     * Default: PJMEDIA_VID_STREAM_START_KEYFRAME_INTERVAL_MSEC 
     856     */ 
     857    unsigned                        startKeyframeInterval; 
     858 
    833859 
    834860public: 
Note: See TracChangeset for help on using the changeset viewer.