From Andreas Heise:

fix missing display of max skew in reversed d.
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4320

svn path=/trunk/; revision=31235
This commit is contained in:
Anders Broman 2009-12-11 06:44:47 +00:00
parent 488253bfe7
commit 141e1fb3b3
1 changed files with 2 additions and 0 deletions

View File

@ -2902,11 +2902,13 @@ static void draw_stat(user_data_t *user_data)
g_snprintf(label_max, sizeof(label_max), "Max delta = %.2f ms at packet no. %u \n"
"Max jitter = %.2f ms. Mean jitter = %.2f ms.\n"
"Max skew = %.2f ms.\n"
"Total RTP packets = %u (expected %u) Lost RTP packets = %d (%.2f%%)"
" Sequence errors = %u \n"
"Duration %.0f s (%.0f ms clock drift, corresponding to %.0f Hz (%+.2f%%)",
user_data->reversed.statinfo.max_delta, user_data->reversed.statinfo.max_nr,
user_data->reversed.statinfo.max_jitter,user_data->reversed.statinfo.mean_jitter,
user_data->reversed.statinfo.max_skew,
r_expected, r_expected, r_lost, r_perc,
user_data->reversed.statinfo.sequence,
r_duration/1000,r_duration*(r_clock_drift-1.0),r_clock_drift*r_clock_rate,100.0*(r_clock_drift-1.0));