From 0aadba1a16bc9dc3b75071a21efdc40a8c6af3eb Mon Sep 17 00:00:00 2001 From: wuggy Date: Mon, 29 Jun 2026 19:51:08 +0100 Subject: [PATCH] AAAAA --- media/libsoundtouch/src/sse_optimized.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/media/libsoundtouch/src/sse_optimized.cpp b/media/libsoundtouch/src/sse_optimized.cpp index dc039753e4..1ca274fe7b 100644 --- a/media/libsoundtouch/src/sse_optimized.cpp +++ b/media/libsoundtouch/src/sse_optimized.cpp @@ -250,14 +250,10 @@ uint FIRFilterSSE::evaluateFilterStereo(float *dest, const float *source, uint n assert((length % 8) == 0); assert(filterCoeffsAlign != NULL); assert(((ulongptr)filterCoeffsAlign) % 16 == 0); - const uint filterLength = length; - const float *coeffsAlign = filterCoeffsAlign; // filter is evaluated for two stereo samples with each iteration, thus use of 'j += 2' const uint filterLength = length; const float *coeffsAlign = filterCoeffsAlign; - - // 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, coeffsAlign, filterLength) \