From b6ccc65a9202454a84902232b435f95a869f20fc Mon Sep 17 00:00:00 2001 From: "j.novak@netsystem.cz" Date: Tue, 21 Jun 2022 19:08:28 +0000 Subject: [PATCH] RTP Analysis dialog: Fix of clock drift freq drift calculation --- ui/qt/rtp_analysis_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/qt/rtp_analysis_dialog.cpp b/ui/qt/rtp_analysis_dialog.cpp index 7545246c47..ee59a9576d 100644 --- a/ui/qt/rtp_analysis_dialog.cpp +++ b/ui/qt/rtp_analysis_dialog.cpp @@ -732,7 +732,7 @@ void RtpAnalysisDialog::resetStatistics() void RtpAnalysisDialog::addPacket(tab_info_t *tab, packet_info *pinfo, const _rtp_info *rtpinfo) { - rtppacket_analyse(&tab->stream.rtp_stats, pinfo, rtpinfo); + rtpstream_info_analyse_process(&tab->stream, pinfo, rtpinfo); new RtpAnalysisTreeWidgetItem(tab->tree_widget, &tab->stream.rtp_stats, pinfo, rtpinfo); tab->time_vals->append(tab->stream.rtp_stats.time / 1000); tab->jitter_vals->append(tab->stream.rtp_stats.jitter);