diff options
author | Chris Robinson <[email protected]> | 2009-09-15 19:06:47 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-09-15 19:06:47 -0700 |
commit | 12f81bcbb91f95df8bafdafa29f30adf55701203 (patch) | |
tree | 9628a3c6b312dfe6d1a609a5a729135f2b516e12 /OpenAL32/Include/alMain.h | |
parent | 6636131d3bb52687229881d4d2343b5c464b5c81 (diff) |
Move the stereo-to-binaural filter to the device
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 55b59b97..cc48aee4 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -240,6 +240,10 @@ struct ALCdevice_struct struct ALdatabuffer *Databuffers; ALuint DatabufferCount; + // Stereo-to-binaural filter + struct bs2b *Bs2b; + ALCint Bs2bLevel; + // Context created on this device ALCcontext *Context; @@ -292,8 +296,6 @@ struct ALCcontext_struct ALCdevice *Device; const ALCchar *ExtensionList; - struct bs2b *bs2b; - ALCcontext *next; }; |