Ignore:
Timestamp:
Jul 17, 2008 2:54:03 PM (16 years ago)
Author:
nanang
Message:

Added ability to dump extended statistics (RTCP XR) in pjsua.

File:
1 edited

Legend:

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

    r2039 r2152  
    280280                                                     pjmedia_rtcp_stat *stat); 
    281281 
     282 
     283#if defined(PJMEDIA_HAS_RTCP_XR) && (PJMEDIA_HAS_RTCP_XR != 0) 
     284/** 
     285 * Get extended session statistics. The extended statistic shows reports 
     286 * from RTCP XR, such as per interval statistics summary (packet count,  
     287 * packet lost, jitter, etc), VoIP metrics (delay, quality, etc) 
     288 * 
     289 * @param session       The media session. 
     290 * @param index         Stream index. 
     291 * @param stat_xr       Stream extended statistics. 
     292 * 
     293 * @return              PJ_SUCCESS on success. 
     294 */ 
     295PJ_DECL(pj_status_t) pjmedia_session_get_stream_stat_xr( 
     296                                             pjmedia_session *session, 
     297                                             unsigned index, 
     298                                             pjmedia_rtcp_xr_stat *stat_xr); 
     299#endif 
     300 
     301 
    282302/** 
    283303 * Dial DTMF digit to the stream, using RFC 2833 mechanism. 
Note: See TracChangeset for help on using the changeset viewer.