mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Merged revisions 80974 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r80974 | file | 2007-08-27 10:20:31 -0300 (Mon, 27 Aug 2007) | 4 lines (closes issue #10562) Reported by: idkpmiller Correct jitter value output in the CLI to be as expected. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@80975 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2416,7 +2416,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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user