Changeset 3239 for pjproject/trunk/pjmedia/include/pjmedia/config.h
- Timestamp:
- Jul 15, 2010 2:45:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/config.h
r3067 r3239 431 431 #endif 432 432 433 434 /** 435 * Specify whether RTCP statistics includes raw jitter statistics. 436 * Raw jitter is defined as absolute value of network transit time 437 * difference of two consecutive packets; refering to "difference D" 438 * term in interarrival jitter calculation in RFC 3550 section 6.4.1. 439 * 440 * Default: 0 (no). 441 */ 442 #ifndef PJMEDIA_RTCP_STAT_HAS_RAW_JITTER 443 # define PJMEDIA_RTCP_STAT_HAS_RAW_JITTER 0 444 #endif 445 446 447 /** 448 * Specify whether RTCP statistics includes IP Delay Variation statistics. 449 * IPDV is defined as network transit time difference of two consecutive 450 * packets. The IPDV statistic can be useful to inspect clock skew existance 451 * and level, e.g: when the IPDV mean values were stable in positive numbers, 452 * then the remote clock (used in sending RTP packets) is faster than local 453 * system clock. Ideally, the IPDV mean values are always equal to 0. 454 * 455 * Default: 0 (no). 456 */ 457 #ifndef PJMEDIA_RTCP_STAT_HAS_IPDV 458 # define PJMEDIA_RTCP_STAT_HAS_IPDV 0 459 #endif 460 461 433 462 /** 434 463 * Specify whether RTCP XR support should be built into PJMEDIA. Disabling
Note: See TracChangeset
for help on using the changeset viewer.