From: Richard Kettlewell Date: Sat, 11 Apr 2009 15:46:27 +0000 (+0100) Subject: Compute rate over a longer interval. X-Git-Tag: 5.0~145^2~5 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/211af11eabdfa1226ee2c7aec25002a1d7b25567?ds=inline Compute rate over a longer interval. --- diff --git a/clients/rtpmon.c b/clients/rtpmon.c index cf83328..070d21c 100644 --- a/clients/rtpmon.c +++ b/clients/rtpmon.c @@ -61,7 +61,7 @@ static unsigned bpf = 4; static uint32_t serial; /** @brief Size of ring buffer */ -#define RINGSIZE 16384 +#define RINGSIZE 131072 /** @brief Ring buffer */ static struct entry ring[RINGSIZE]; @@ -112,7 +112,15 @@ static void frames(const struct timeval *when, size_t n) { ringtail = (ringtail + 1) % RINGSIZE; // Report once a second if(prev != when->tv_sec) { - if(printf("%8.2f %8.2f %8.2f\n", + if(printf("%8.2f %8.2f %8.2f %8.2f %8.2f %8.2f %8.2f\n", + rate((ringtail - RINGSIZE / 128) % RINGSIZE, + (ringtail - 1) % RINGSIZE), + rate((ringtail - RINGSIZE / 64) % RINGSIZE, + (ringtail - 1) % RINGSIZE), + rate((ringtail - RINGSIZE / 32) % RINGSIZE, + (ringtail - 1) % RINGSIZE), + rate((ringtail - RINGSIZE / 16) % RINGSIZE, + (ringtail - 1) % RINGSIZE), rate((ringtail - RINGSIZE / 8) % RINGSIZE, (ringtail - 1) % RINGSIZE), rate((ringtail - RINGSIZE / 4) % RINGSIZE,