summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/samples/streamutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjsip-apps/src/samples/streamutil.c')
-rw-r--r--pjsip-apps/src/samples/streamutil.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/pjsip-apps/src/samples/streamutil.c b/pjsip-apps/src/samples/streamutil.c
index ca19fb60..20544276 100644
--- a/pjsip-apps/src/samples/streamutil.c
+++ b/pjsip-apps/src/samples/streamutil.c
@@ -604,11 +604,11 @@ static void print_stream_stat(pjmedia_stream *stream)
good_number(ipbytes, stat.rx.bytes + stat.rx.pkt * 32),
"",
stat.rx.loss,
- stat.rx.loss * 100.0 / stat.rx.pkt,
+ stat.rx.loss * 100.0 / (stat.rx.pkt + stat.rx.loss),
stat.rx.dup,
- stat.rx.dup * 100.0 / stat.rx.pkt,
+ stat.rx.dup * 100.0 / (stat.rx.pkt + stat.rx.dup),
stat.rx.reorder,
- stat.rx.reorder * 100.0 / stat.rx.pkt,
+ stat.rx.reorder * 100.0 / (stat.rx.pkt + stat.rx.reorder),
"",
stat.rx.loss_period.min / 1000.0,
stat.rx.loss_period.avg / 1000.0,
@@ -647,11 +647,11 @@ static void print_stream_stat(pjmedia_stream *stream)
good_number(ipbytes, stat.tx.bytes + stat.tx.pkt * 32),
"",
stat.tx.loss,
- stat.tx.loss * 100.0 / stat.tx.pkt,
+ stat.tx.loss * 100.0 / (stat.tx.pkt + stat.tx.loss),
stat.tx.dup,
- stat.tx.dup * 100.0 / stat.tx.pkt,
+ stat.tx.dup * 100.0 / (stat.tx.pkt + stat.tx.dup),
stat.tx.reorder,
- stat.tx.reorder * 100.0 / stat.tx.pkt,
+ stat.tx.reorder * 100.0 / (stat.tx.pkt + stat.tx.reorder),
"",
stat.tx.loss_period.min / 1000.0,
stat.tx.loss_period.avg / 1000.0,