diff options
author | Chris Robinson <[email protected]> | 2019-02-22 22:35:37 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-02-22 22:35:37 -0800 |
commit | 317206e8f3312fb84a61b3681303fb5f8f92af7d (patch) | |
tree | 40d5d97477c2a850fcd831bae3f11c77e76803bb /OpenAL32/alSource.cpp | |
parent | 45378fe6872fc0e27f1865fe909b22788d486c7b (diff) |
Remove the FOAOut mixing buffer and associated post-processes
Diffstat (limited to 'OpenAL32/alSource.cpp')
-rw-r--r-- | OpenAL32/alSource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alSource.cpp b/OpenAL32/alSource.cpp index fbf6bfe6..30ba02f6 100644 --- a/OpenAL32/alSource.cpp +++ b/OpenAL32/alSource.cpp @@ -2835,7 +2835,7 @@ AL_API ALvoid AL_APIENTRY alSourcePlayv(ALsizei n, const ALuint *sources) if(((*buffer)->mFmtChannels == FmtBFormat2D || (*buffer)->mFmtChannels == FmtBFormat3D) && device->mAmbiOrder > 1) { - voice->AmbiScales = AmbiUpsampler::GetHFOrderScales(1, device->mAmbiOrder); + voice->AmbiScales = BFormatDec::GetHFOrderScales(1, device->mAmbiOrder); voice->AmbiSplitter[0].init(400.0f / static_cast<ALfloat>(device->Frequency)); for(ALsizei i{1};i < voice->NumChannels;++i) voice->AmbiSplitter[i] = voice->AmbiSplitter[0]; |