Changeset 3999 for pjproject/trunk/pjmedia/include/pjmedia/config.h
- Timestamp:
- Mar 30, 2012 7:10:13 AM (12 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk
-
pjproject/trunk/pjmedia/include/pjmedia/config.h
r3870 r3999 454 454 #endif 455 455 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 456 469 457 470 /** … … 477 490 * PJMEDIA_STREAM_ENABLE_XR setting for more info. 478 491 * 479 * Default: 1 (yes).492 * Default: 0 (no). 480 493 */ 481 494 #ifndef PJMEDIA_HAS_RTCP_XR … … 494 507 # define PJMEDIA_STREAM_ENABLE_XR 0 495 508 #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 496 522 497 523 /**
Note: See TracChangeset
for help on using the changeset viewer.