Hi Community,
Greetings from me! Very sorry for interrupting again!
I find the calculation of "Mean Jitter" KPI for RTP flow is like this (
https://gitlab.com/wireshark/wireshark/-/blob/master/ui/tap-rtp-analysis.c#L497):
statinfo->mean_jitter = (statinfo->mean_jitter*(statinfo->total_nr-1) + current_diff) / statinfo->total_nr;
But in my humble opinion, maybe we should use current_jitter instead of current_diff? Like following one:
statinfo->mean_jitter = (statinfo->mean_jitter*(statinfo->total_nr-1) + current_jitter) / statinfo->total_nr;
Thanks very much!
Best Regards
Nan Xiao