Ignore:
Timestamp:
Jul 15, 2010 2:45:47 PM (14 years ago)
Author:
nanang
Message:

Re #1103:

  • Added (back) raw jitter statistics into RTCP statistics, with the new name "rx_raw_jitter".
  • Added IPDV statistics into RTCP statistics.
  • Added new compile-time settings to enable/disable raw jitter and IPDV statistics.
  • Updated call dump in pjsua-lib.
File:
1 edited

Legend:

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

    r3067 r3239  
    431431#endif 
    432432 
     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 
    433462/** 
    434463 * Specify whether RTCP XR support should be built into PJMEDIA. Disabling 
Note: See TracChangeset for help on using the changeset viewer.