Ignore:
Timestamp:
Apr 29, 2008 5:15:41 PM (16 years ago)
Author:
nanang
Message:

More on ticket #513:

  • Added RTCP XR print reports to streamutil.c
  • Added new API pjmedia_stream_get_stat_xr()
  • Added field rtcp_xr_enabled to stream info structure
  • Swapped the wrong RTCP XR statistic storage (encoding direction should be stored in TX, decoding direction in RX, it was the opposite)
File:
1 edited

Legend:

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

    r1942 r1943  
    230230{ 
    231231    struct { 
    232         pj_uint32_t         begin_seq; 
    233         pj_uint32_t         end_seq; 
     232        pj_time_val         update;     /**< Time of last update.           */ 
     233 
     234        pj_uint32_t         begin_seq;  /**< Begin # seq of this interval.  */ 
     235        pj_uint32_t         end_seq;    /**< End # seq of this interval.    */ 
    234236        unsigned            count;      /**< Number of packets.             */ 
    235237 
     
    264266 
    265267    struct { 
     268        pj_time_val         update;         /**< Time of last update.       */ 
     269 
    266270        pj_uint8_t          loss_rate;      /**< Packet loss rate           */ 
    267271        pj_uint8_t          discard_rate;   /**< Packet discarded rate      */ 
     
    272276        pj_uint16_t         rnd_trip_delay; /**< Round trip delay           */ 
    273277        pj_uint16_t         end_sys_delay;  /**< End system delay           */ 
    274         pj_uint8_t          signal_lvl;     /**< Signal level               */ 
    275         pj_uint8_t          noise_lvl;      /**< Noise level                */ 
     278        pj_int8_t           signal_lvl;     /**< Signal level               */ 
     279        pj_int8_t           noise_lvl;      /**< Noise level                */ 
    276280        pj_uint8_t          rerl;           /**< Residual Echo Return Loss  */ 
    277281        pj_uint8_t          gmin;           /**< The gap threshold          */ 
Note: See TracChangeset for help on using the changeset viewer.