From 9f837639562ef282625d862ec223ee585038147a Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 22 Jun 2006 18:44:11 +0000 Subject: Fixed RTCP statistic returning fraction lost instead of total lost git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@537 74dad513-b988-da41-8d7b-12977e46ad98 --- pjmedia/include/pjmedia/rtcp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pjmedia/include') diff --git a/pjmedia/include/pjmedia/rtcp.h b/pjmedia/include/pjmedia/rtcp.h index 60ad19f1..b515dac7 100644 --- a/pjmedia/include/pjmedia/rtcp.h +++ b/pjmedia/include/pjmedia/rtcp.h @@ -156,10 +156,10 @@ struct pjmedia_rtcp_stream_stat unsigned update_cnt; /**< Number of updates (to calculate avg) */ pj_uint32_t pkt; /**< Total number of packets */ pj_uint32_t bytes; /**< Total number of payload/bytes */ - unsigned discard; /**< Number of discarded packets. */ - unsigned loss; /**< Number of packets lost */ - unsigned reorder; /**< Number of out of order packets */ - unsigned dup; /**< Number of duplicates packets */ + unsigned discard; /**< Total number of discarded packets. */ + unsigned loss; /**< Total number of packets lost */ + unsigned reorder; /**< Total number of out of order packets */ + unsigned dup; /**< Total number of duplicates packets */ struct { unsigned count; /**< Number of period samples(to calc avg) */ -- cgit v1.2.3