Ignore:
Timestamp:
Apr 28, 2008 6:05:49 PM (16 years ago)
Author:
bennylp
Message:

Ticket #513: Support for RTCP XR (initial patch)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/config.h

    r1941 r1942  
    340340#endif 
    341341 
     342/** 
     343 * Specify whether RTCP XR support should be built into PJMEDIA. Disabling 
     344 * this feature will reduce footprint slightly. Note that even when this  
     345 * setting is enabled, RTCP XR processing will only be performed in stream  
     346 * if it is enabled on run-time on per stream basis. See   
     347 * PJMEDIA_STREAM_ENABLE_XR setting for more info. 
     348 * 
     349 * Default: 1 (yes). 
     350 */ 
     351#ifndef PJMEDIA_HAS_RTCP_XR 
     352#   define PJMEDIA_HAS_RTCP_XR                  0 
     353#endif 
     354 
     355 
     356/** 
     357 * The RTCP XR feature is activated and used by stream if \a enable_rtcp_xr 
     358 * field of \a pjmedia_stream_info structure is non-zero. This setting  
     359 * controls the default value of this field. 
     360 * 
     361 * Default: 0 (disabled) 
     362 */ 
     363#ifndef PJMEDIA_STREAM_ENABLE_XR 
     364#   define PJMEDIA_STREAM_ENABLE_XR             0 
     365#endif 
    342366 
    343367/** 
Note: See TracChangeset for help on using the changeset viewer.