Ignore:
Timestamp:
Mar 30, 2012 7:10:13 AM (12 years ago)
Author:
bennylp
Message:

Re #1474: Merged all changes from 1.12 - HEAD (from the 1.x branch)

Location:
pjproject/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk

  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r3870 r3999  
    454454#endif 
    455455 
     456/** 
     457 * Specify the factor with wich RTCP RTT statistics should be normalized  
     458 * if exceptionally high. For e.g. mobile networks with potentially large 
     459 * fluctuations, this might be unwanted. 
     460 * 
     461 * Use (0) to disable this feature. 
     462 * 
     463 * Default: 3. 
     464 */ 
     465#ifndef PJMEDIA_RTCP_NORMALIZE_FACTOR 
     466#   define PJMEDIA_RTCP_NORMALIZE_FACTOR        3 
     467#endif 
     468 
    456469 
    457470/** 
     
    477490 * PJMEDIA_STREAM_ENABLE_XR setting for more info. 
    478491 * 
    479  * Default: 1 (yes). 
     492 * Default: 0 (no). 
    480493 */ 
    481494#ifndef PJMEDIA_HAS_RTCP_XR 
     
    494507#   define PJMEDIA_STREAM_ENABLE_XR             0 
    495508#endif 
     509 
     510 
     511/** 
     512 * Specify the buffer length for storing any received RTCP SDES text 
     513 * in a stream session. Usually RTCP contains only the mandatory SDES 
     514 * field, i.e: CNAME. 
     515 *  
     516 * Default: 64 bytes. 
     517 */ 
     518#ifndef PJMEDIA_RTCP_RX_SDES_BUF_LEN 
     519#   define PJMEDIA_RTCP_RX_SDES_BUF_LEN         64 
     520#endif 
     521 
    496522 
    497523/** 
Note: See TracChangeset for help on using the changeset viewer.