diff options
author | Chris Robinson <[email protected]> | 2008-07-26 00:58:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-07-26 00:58:54 -0700 |
commit | 3e0f9cc716392a67a7dfa63ff4785140dc24c93f (patch) | |
tree | 92e5626bdc92e5a0fd3c3e1908a6900ffe9765a4 /OpenAL32 | |
parent | c7e49c9f5735df52d4e847529ae9cb23027547e7 (diff) |
Make the filter processing function inline
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alFilter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alFilter.h b/OpenAL32/Include/alFilter.h index f1d24d0f..c57dabb0 100644 --- a/OpenAL32/Include/alFilter.h +++ b/OpenAL32/Include/alFilter.h @@ -53,7 +53,8 @@ AL_API ALvoid AL_APIENTRY alGetFilterfv(ALuint filter, ALenum param, ALfloat *pf ALvoid ReleaseALFilters(ALvoid); -float lpFilter(FILTER *iir, float input); +#define FILTER_SECTIONS 2 /* 2 filter sections for 24 db/oct filter */ + int InitLowPassFilter(ALCcontext *Context, FILTER *iir); #ifdef __cplusplus |