diff options
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/effects/fshifter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/fshifter.c b/Alc/effects/fshifter.c index 3a58f087..5aa08453 100644 --- a/Alc/effects/fshifter.c +++ b/Alc/effects/fshifter.c @@ -182,7 +182,7 @@ static ALvoid ALfshifterState_process(ALfshifterState *state, ALsizei SamplesToD } /* Processing signal by Discrete Hilbert Transform (analytical signal). */ - hilbert(HIL_SIZE, state->Analytic); + complex_hilbert(state->Analytic, HIL_SIZE); /* Windowing and add to output accumulator */ for(k = 0;k < HIL_SIZE;k++) |