Merge commit '0c7866eda3266bd7cba8bc6af03d969b777e188d'

This commit is contained in:
Volker Fischer 2020-06-19 16:21:13 +02:00
commit 3ac8a2de8d
2 changed files with 13 additions and 0 deletions

View File

@ -6,6 +6,16 @@ contains(CONFIG, "noupcasename") {
TARGET = jamulus
}
# support multi-threading with OMP if requested
contains(CONFIG, "multithreading") {
unix {
message(The OpenMP multithreading is enabled.)
DEFINES += USE_OMP
QMAKE_CXXFLAGS += -fopenmp
QMAKE_LFLAGS += -fopenmp
}
}
CONFIG += qt \
thread \
release

View File

@ -993,6 +993,9 @@ static CTimingMeas JitterMeas ( 1000, "test2.dat" ); JitterMeas.Measure(); // TE
vecChannelLevels );
}
#ifdef USE_OMP
# pragma omp parallel for
#endif
for ( int i = 0; i < iNumClients; i++ )
{
int iClientFrameSizeSamples = 0; // initialize to avoid a compiler warning