diff options
author | Chris Robinson <[email protected]> | 2018-05-24 00:16:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-05-24 00:16:50 -0700 |
commit | 803d331711cf5c0ecd0796bf28e9c95cf3724198 (patch) | |
tree | 8874f59490749796c9b117d0ff8094930f2fd121 /Alc/effects/fshifter.c | |
parent | 422cf429e61c610f271a05c9b5ac44c60b7e58fe (diff) |
Improve formatting of the hilbert function
Diffstat (limited to 'Alc/effects/fshifter.c')
-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++) |