diff --git a/RTCP/InputProc/test/tGenerator.cc b/RTCP/InputProc/test/tGenerator.cc
index 05cea0949190e5f5530c819cc225b41d75c4c10b..48e2a58dcfca512f082677c5c1cb79d204af97af 100644
--- a/RTCP/InputProc/test/tGenerator.cc
+++ b/RTCP/InputProc/test/tGenerator.cc
@@ -16,7 +16,7 @@ using namespace RTCP;
 using namespace std;
 
 // Duration of the test (seconds)
-#define DURATION 5
+#define DURATION 2
 
 void sighandler(int)
 {
@@ -27,7 +27,7 @@ int main( int, char **argv ) {
   INIT_LOGGER( argv[0] );
 
   omp_set_nested(true);
-  omp_set_num_threads(32);
+  omp_set_num_threads(16);
 
   signal(SIGHUP, sighandler);
   siginterrupt(SIGHUP, 1);
@@ -46,6 +46,7 @@ int main( int, char **argv ) {
   settings.nrFlagRanges = 64;
 
   settings.dataKey = stationID.hash();
+
   Generator g(settings, streamDescs);
 
   #pragma omp parallel sections num_threads(3)