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/rtcp.h

    r3237 r3239  
    215215    pj_uint32_t              rtp_tx_last_ts; /**< Last TX RTP timestamp.    */ 
    216216    pj_uint16_t              rtp_tx_last_seq;/**< Last TX RTP sequence.     */ 
     217 
     218#if defined(PJMEDIA_RTCP_STAT_HAS_IPDV) && PJMEDIA_RTCP_STAT_HAS_IPDV!=0 
     219    pj_math_stat             rx_ipdv;/**< Statistics of IP packet delay 
     220                                          variation in receiving direction 
     221                                          (in usec).                        */ 
     222#endif 
     223 
     224#if defined(PJMEDIA_RTCP_STAT_HAS_RAW_JITTER) && PJMEDIA_RTCP_STAT_HAS_RAW_JITTER!=0 
     225    pj_math_stat             rx_raw_jitter;/**< Statistic of raw jitter in 
     226                                                receiving direction  
     227                                                (in usec).                  */ 
     228#endif 
    217229}; 
    218230 
Note: See TracChangeset for help on using the changeset viewer.