RTP Analysis dialog: Fix of clock drift freq drift calculation

This commit is contained in:
j.novak@netsystem.cz 2022-06-21 19:08:28 +00:00 committed by Gerald Combs
parent 4c22ff6bdb
commit b6ccc65a92
1 changed files with 1 additions and 1 deletions

View File

@ -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);