From b6ce793f849c25cb9ddf992e2b647d3babcaf6cb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 8 Jun 2019 16:05:18 -0700 Subject: Use a span for the complex_fft/hilbert functions --- Alc/effects/fshifter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/effects/fshifter.cpp') diff --git a/Alc/effects/fshifter.cpp b/Alc/effects/fshifter.cpp index 496a767d..0bbcc859 100644 --- a/Alc/effects/fshifter.cpp +++ b/Alc/effects/fshifter.cpp @@ -171,7 +171,7 @@ void FshifterState::process(const ALsizei samplesToDo, const FloatBufferLine *RE } /* Processing signal by Discrete Hilbert Transform (analytical signal). */ - complex_hilbert(mAnalytic, HIL_SIZE); + complex_hilbert(mAnalytic); /* Windowing and add to output accumulator */ for(k = 0;k < HIL_SIZE;k++) -- cgit v1.2.3