Fix build error in libsoundtouch

This commit is contained in:
wuggy 2026-06-29 06:35:57 +01:00
commit 422801382c

View file

@ -255,7 +255,7 @@ uint FIRFilterSSE::evaluateFilterStereo(float *dest, const float *source, uint n
// filter is evaluated for two stereo samples with each iteration, thus use of 'j += 2'
#if defined(_OPENMP)
#pragma omp parallel for default(none) shared(source, dest, count, filterLength, coeffsAlign) private(j) schedule(static)
#pragma omp parallel for default(none) shared(source, dest, count, coeffsAlign) private(j) schedule(static)
#endif
for (j = 0; j < count; j += 2)
{