aboutsummaryrefslogtreecommitdiffstats
path: root/main/rtp.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-27 13:20:31 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-27 13:20:31 +0000
commite24081803b6e0e9f98d5c1c04f2e3ce137e689dd (patch)
tree78764c0bf9aebf6bd380d015e89a6dde133e67b5 /main/rtp.c
parent6ced4272e920e1283a9b6742af69a0b4e2de9ea1 (diff)
(closes issue #10562)
Reported by: idkpmiller Correct jitter value output in the CLI to be as expected. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@80974 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/rtp.c')
-rw-r--r--main/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rtp.c b/main/rtp.c
index 4e4bde623..f4b058570 100644
--- a/main/rtp.c
+++ b/main/rtp.c
@@ -2093,7 +2093,7 @@ void ast_rtp_destroy(struct ast_rtp *rtp)
ast_verbose(" SSRC: %u\n", rtp->ssrc);
ast_verbose(" Sent packets: %u\n", rtp->txcount);
ast_verbose(" Lost packets: %u\n", rtp->rtcp->reported_lost);
- ast_verbose(" Jitter: %u\n", rtp->rtcp->reported_jitter);
+ ast_verbose(" Jitter: %u\n", rtp->rtcp->reported_jitter / (unsigned int)65536.0);
ast_verbose(" SR-count: %u\n", rtp->rtcp->sr_count);
ast_verbose(" RTT: %f\n", rtp->rtcp->rtt);
}