summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-06-22 18:44:11 +0000
committerBenny Prijono <bennylp@teluu.com>2006-06-22 18:44:11 +0000
commit9f837639562ef282625d862ec223ee585038147a (patch)
tree53d6c4e094496d9fbece2169fc7873fc8648dcef /pjmedia/include
parent9d93457bad88472dfd53fa844758bc5acc3a10ef (diff)
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
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/rtcp.h8
1 files changed, 4 insertions, 4 deletions
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) */