From feab13417bb15f0f4a7cba9183ff0fe12c170c66 Mon Sep 17 00:00:00 2001 From: wuggy Date: Mon, 29 Jun 2026 06:37:59 +0100 Subject: [PATCH] Fix build error in libsoundtouch pt.2 --- media/libsoundtouch/src/TDStretch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/libsoundtouch/src/TDStretch.cpp b/media/libsoundtouch/src/TDStretch.cpp index 16efdcf959..c56d35bbba 100644 --- a/media/libsoundtouch/src/TDStretch.cpp +++ b/media/libsoundtouch/src/TDStretch.cpp @@ -311,7 +311,7 @@ int TDStretch::seekBestOverlapPositionFull(const SAMPLETYPE *refPos) const SAMPLETYPE *midBuffer = pMidBuffer; #if defined(_OPENMP) - #pragma omp parallel for default(none) shared(refPos, bestCorr, bestOffs, seekLen, nChannels, midBuffer) private(i) schedule(static) + #pragma omp parallel for default(none) shared(refPos, bestCorr, bestOffs, midBuffer) private(i) schedule(static) #endif for (i = 1; i < seekLen; i ++) {