mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Fix build error in libsoundtouch
This commit is contained in:
parent
dc158a7409
commit
422801382c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue