aboutsummaryrefslogtreecommitdiffstats
path: root/tap-rtp.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-31 17:06:04 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-05-31 17:06:04 +0000
commitbae1f16b28baa1ec625087224db04d4e400fd643 (patch)
treea546e0fdd71c2ec768ae7e3a15d36052377bf0af /tap-rtp.c
parent3fcb51523556a89e5366614134f128d0227f5ee2 (diff)
Calculate jitter and delta in ms.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28546 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-rtp.c')
-rw-r--r--tap-rtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tap-rtp.c b/tap-rtp.c
index 6823d4198e..a9b1f6a864 100644
--- a/tap-rtp.c
+++ b/tap-rtp.c
@@ -120,9 +120,9 @@ rtp_streams_stat_draw(void *arg _U_)
payload_type,
strinfo->npackets,
lost, perc,
- strinfo->rtp_stats.max_delta*1000,
- strinfo->rtp_stats.max_jitter*1000,
- strinfo->rtp_stats.mean_jitter*1000,
+ strinfo->rtp_stats.max_delta,
+ strinfo->rtp_stats.max_jitter,
+ strinfo->rtp_stats.mean_jitter,
(strinfo->problem)?"X":"");
list = g_list_next(list);