From b4111137fa907bdbe58cbb7febb3aea7cf03264e Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sat, 11 Jun 2011 19:06:43 +0000 Subject: [PATCH] use 2 minutes history for error rate estimation --- src/buffer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/buffer.h b/src/buffer.h index bf233482..871867c5 100755 --- a/src/buffer.h +++ b/src/buffer.h @@ -30,9 +30,9 @@ /* Definitions ****************************************************************/ -// each regular buffer access lead to a count for put and get, assuming 2.33 ms -// blocks we have 5 * 60 s / 2.33 ms * 2 = 22500 -#define MAX_STATISTIC_COUNT 225000 +// each regular buffer access lead to a count for put and get, assuming 2.66 ms +// blocks we have 2 * 60 s / 2.66 ms * 2 = 90000 +#define MAX_STATISTIC_COUNT 90000 // number of simulation network jitter buffers for evaluating the statistic #define NUM_STAT_SIMULATION_BUFFERS 13