| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657 |
- /**
- * OpenAL cross platform audio library
- * Copyright (C) 1999-2007 by authors.
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- * Or go to http://www.gnu.org/copyleft/lgpl.html
- */
- #include "config.h"
- #include "filter.h"
- #include <algorithm>
- #include <cstdarg>
- #include <cstdint>
- #include <cstdio>
- #include <iterator>
- #include <memory>
- #include <mutex>
- #include <numeric>
- #include <unordered_map>
- #include <vector>
- #include "AL/al.h"
- #include "AL/alc.h"
- #include "AL/efx.h"
- #include "albit.h"
- #include "alc/context.h"
- #include "alc/device.h"
- #include "almalloc.h"
- #include "alnumeric.h"
- #include "alspan.h"
- #include "core/except.h"
- #include "core/logging.h"
- #include "direct_defs.h"
- #include "intrusive_ptr.h"
- #include "opthelpers.h"
- namespace {
- using SubListAllocator = al::allocator<std::array<ALfilter,64>>;
- void InitFilterParams(ALfilter *filter, ALenum type)
- {
- if(type == AL_FILTER_LOWPASS)
- {
- filter->Gain = AL_LOWPASS_DEFAULT_GAIN;
- filter->GainHF = AL_LOWPASS_DEFAULT_GAINHF;
- filter->HFReference = LowPassFreqRef;
- filter->GainLF = 1.0f;
- filter->LFReference = HighPassFreqRef;
- filter->mTypeVariant.emplace<LowpassFilterTable>();
- }
- else if(type == AL_FILTER_HIGHPASS)
- {
- filter->Gain = AL_HIGHPASS_DEFAULT_GAIN;
- filter->GainHF = 1.0f;
- filter->HFReference = LowPassFreqRef;
- filter->GainLF = AL_HIGHPASS_DEFAULT_GAINLF;
- filter->LFReference = HighPassFreqRef;
- filter->mTypeVariant.emplace<HighpassFilterTable>();
- }
- else if(type == AL_FILTER_BANDPASS)
- {
- filter->Gain = AL_BANDPASS_DEFAULT_GAIN;
- filter->GainHF = AL_BANDPASS_DEFAULT_GAINHF;
- filter->HFReference = LowPassFreqRef;
- filter->GainLF = AL_BANDPASS_DEFAULT_GAINLF;
- filter->LFReference = HighPassFreqRef;
- filter->mTypeVariant.emplace<BandpassFilterTable>();
- }
- else
- {
- filter->Gain = 1.0f;
- filter->GainHF = 1.0f;
- filter->HFReference = LowPassFreqRef;
- filter->GainLF = 1.0f;
- filter->LFReference = HighPassFreqRef;
- filter->mTypeVariant.emplace<NullFilterTable>();
- }
- filter->type = type;
- }
- [[nodiscard]]
- auto EnsureFilters(al::Device *device, size_t needed) noexcept -> bool
- try {
- size_t count{std::accumulate(device->FilterList.cbegin(), device->FilterList.cend(), 0_uz,
- [](size_t cur, const FilterSubList &sublist) noexcept -> size_t
- { return cur + static_cast<ALuint>(al::popcount(sublist.FreeMask)); })};
- while(needed > count)
- {
- if(device->FilterList.size() >= 1<<25) UNLIKELY
- return false;
- FilterSubList sublist{};
- sublist.FreeMask = ~0_u64;
- sublist.Filters = SubListAllocator{}.allocate(1);
- device->FilterList.emplace_back(std::move(sublist));
- count += std::tuple_size_v<SubListAllocator::value_type>;
- }
- return true;
- }
- catch(...) {
- return false;
- }
- [[nodiscard]]
- auto AllocFilter(al::Device *device) noexcept -> ALfilter*
- {
- auto sublist = std::find_if(device->FilterList.begin(), device->FilterList.end(),
- [](const FilterSubList &entry) noexcept -> bool
- { return entry.FreeMask != 0; });
- auto lidx = static_cast<ALuint>(std::distance(device->FilterList.begin(), sublist));
- auto slidx = static_cast<ALuint>(al::countr_zero(sublist->FreeMask));
- ASSUME(slidx < 64);
- ALfilter *filter{al::construct_at(al::to_address(sublist->Filters->begin() + slidx))};
- InitFilterParams(filter, AL_FILTER_NULL);
- /* Add 1 to avoid filter ID 0. */
- filter->id = ((lidx<<6) | slidx) + 1;
- sublist->FreeMask &= ~(1_u64 << slidx);
- return filter;
- }
- void FreeFilter(al::Device *device, ALfilter *filter)
- {
- device->mFilterNames.erase(filter->id);
- const ALuint id{filter->id - 1};
- const size_t lidx{id >> 6};
- const ALuint slidx{id & 0x3f};
- std::destroy_at(filter);
- device->FilterList[lidx].FreeMask |= 1_u64 << slidx;
- }
- [[nodiscard]]
- auto LookupFilter(al::Device *device, ALuint id) noexcept -> ALfilter*
- {
- const size_t lidx{(id-1) >> 6};
- const ALuint slidx{(id-1) & 0x3f};
- if(lidx >= device->FilterList.size()) UNLIKELY
- return nullptr;
- FilterSubList &sublist = device->FilterList[lidx];
- if(sublist.FreeMask & (1_u64 << slidx)) UNLIKELY
- return nullptr;
- return al::to_address(sublist.Filters->begin() + slidx);
- }
- } // namespace
- /* Null filter parameter handlers */
- template<>
- void FilterTable<NullFilterTable>::setParami(ALCcontext *context, ALfilter*, ALenum param, int)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::setParamiv(ALCcontext *context, ALfilter*, ALenum param, const int*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::setParamf(ALCcontext *context, ALfilter*, ALenum param, float)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::setParamfv(ALCcontext *context, ALfilter*, ALenum param, const float*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::getParami(ALCcontext *context, const ALfilter*, ALenum param, int*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::getParamiv(ALCcontext *context, const ALfilter*, ALenum param, int*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::getParamf(ALCcontext *context, const ALfilter*, ALenum param, float*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<NullFilterTable>::getParamfv(ALCcontext *context, const ALfilter*, ALenum param, float*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid null filter property {:#04x}", as_unsigned(param)); }
- /* Lowpass parameter handlers */
- template<>
- void FilterTable<LowpassFilterTable>::setParami(ALCcontext *context, ALfilter*, ALenum param, int)
- { context->throw_error(AL_INVALID_ENUM, "Invalid low-pass integer property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<LowpassFilterTable>::setParamiv(ALCcontext *context, ALfilter *filter, ALenum param, const int *values)
- { setParami(context, filter, param, *values); }
- template<>
- void FilterTable<LowpassFilterTable>::setParamf(ALCcontext *context, ALfilter *filter, ALenum param, float val)
- {
- switch(param)
- {
- case AL_LOWPASS_GAIN:
- if(!(val >= AL_LOWPASS_MIN_GAIN && val <= AL_LOWPASS_MAX_GAIN))
- context->throw_error(AL_INVALID_VALUE, "Low-pass gain {:f} out of range", val);
- filter->Gain = val;
- return;
- case AL_LOWPASS_GAINHF:
- if(!(val >= AL_LOWPASS_MIN_GAINHF && val <= AL_LOWPASS_MAX_GAINHF))
- context->throw_error(AL_INVALID_VALUE, "Low-pass gainhf {:f} out of range", val);
- filter->GainHF = val;
- return;
- }
- context->throw_error(AL_INVALID_ENUM, "Invalid low-pass float property {:#04x}",
- as_unsigned(param));
- }
- template<>
- void FilterTable<LowpassFilterTable>::setParamfv(ALCcontext *context, ALfilter *filter, ALenum param, const float *vals)
- { setParamf(context, filter, param, *vals); }
- template<>
- void FilterTable<LowpassFilterTable>::getParami(ALCcontext *context, const ALfilter*, ALenum param, int*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid low-pass integer property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<LowpassFilterTable>::getParamiv(ALCcontext *context, const ALfilter *filter, ALenum param, int *values)
- { getParami(context, filter, param, values); }
- template<>
- void FilterTable<LowpassFilterTable>::getParamf(ALCcontext *context, const ALfilter *filter, ALenum param, float *val)
- {
- switch(param)
- {
- case AL_LOWPASS_GAIN: *val = filter->Gain; return;
- case AL_LOWPASS_GAINHF: *val = filter->GainHF; return;
- }
- context->throw_error(AL_INVALID_ENUM, "Invalid low-pass float property {:#04x}",
- as_unsigned(param));
- }
- template<>
- void FilterTable<LowpassFilterTable>::getParamfv(ALCcontext *context, const ALfilter *filter, ALenum param, float *vals)
- { getParamf(context, filter, param, vals); }
- /* Highpass parameter handlers */
- template<>
- void FilterTable<HighpassFilterTable>::setParami(ALCcontext *context, ALfilter*, ALenum param, int)
- { context->throw_error(AL_INVALID_ENUM, "Invalid high-pass integer property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<HighpassFilterTable>::setParamiv(ALCcontext *context, ALfilter *filter, ALenum param, const int *values)
- { setParami(context, filter, param, *values); }
- template<>
- void FilterTable<HighpassFilterTable>::setParamf(ALCcontext *context, ALfilter *filter, ALenum param, float val)
- {
- switch(param)
- {
- case AL_HIGHPASS_GAIN:
- if(!(val >= AL_HIGHPASS_MIN_GAIN && val <= AL_HIGHPASS_MAX_GAIN))
- context->throw_error(AL_INVALID_VALUE, "High-pass gain {:f} out of range", val);
- filter->Gain = val;
- return;
- case AL_HIGHPASS_GAINLF:
- if(!(val >= AL_HIGHPASS_MIN_GAINLF && val <= AL_HIGHPASS_MAX_GAINLF))
- context->throw_error(AL_INVALID_VALUE, "High-pass gainlf {:f} out of range", val);
- filter->GainLF = val;
- return;
- }
- context->throw_error(AL_INVALID_ENUM, "Invalid high-pass float property {:#04x}",
- as_unsigned(param));
- }
- template<>
- void FilterTable<HighpassFilterTable>::setParamfv(ALCcontext *context, ALfilter *filter, ALenum param, const float *vals)
- { setParamf(context, filter, param, *vals); }
- template<>
- void FilterTable<HighpassFilterTable>::getParami(ALCcontext *context, const ALfilter*, ALenum param, int*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid high-pass integer property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<HighpassFilterTable>::getParamiv(ALCcontext *context, const ALfilter *filter, ALenum param, int *values)
- { getParami(context, filter, param, values); }
- template<>
- void FilterTable<HighpassFilterTable>::getParamf(ALCcontext *context, const ALfilter *filter, ALenum param, float *val)
- {
- switch(param)
- {
- case AL_HIGHPASS_GAIN: *val = filter->Gain; return;
- case AL_HIGHPASS_GAINLF: *val = filter->GainLF; return;
- }
- context->throw_error(AL_INVALID_ENUM, "Invalid high-pass float property {:#04x}",
- as_unsigned(param));
- }
- template<>
- void FilterTable<HighpassFilterTable>::getParamfv(ALCcontext *context, const ALfilter *filter, ALenum param, float *vals)
- { getParamf(context, filter, param, vals); }
- /* Bandpass parameter handlers */
- template<>
- void FilterTable<BandpassFilterTable>::setParami(ALCcontext *context, ALfilter*, ALenum param, int)
- { context->throw_error(AL_INVALID_ENUM, "Invalid band-pass integer property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<BandpassFilterTable>::setParamiv(ALCcontext *context, ALfilter *filter, ALenum param, const int *values)
- { setParami(context, filter, param, *values); }
- template<>
- void FilterTable<BandpassFilterTable>::setParamf(ALCcontext *context, ALfilter *filter, ALenum param, float val)
- {
- switch(param)
- {
- case AL_BANDPASS_GAIN:
- if(!(val >= AL_BANDPASS_MIN_GAIN && val <= AL_BANDPASS_MAX_GAIN))
- context->throw_error(AL_INVALID_VALUE, "Band-pass gain {:f} out of range", val);
- filter->Gain = val;
- return;
- case AL_BANDPASS_GAINHF:
- if(!(val >= AL_BANDPASS_MIN_GAINHF && val <= AL_BANDPASS_MAX_GAINHF))
- context->throw_error(AL_INVALID_VALUE, "Band-pass gainhf {:f} out of range", val);
- filter->GainHF = val;
- return;
- case AL_BANDPASS_GAINLF:
- if(!(val >= AL_BANDPASS_MIN_GAINLF && val <= AL_BANDPASS_MAX_GAINLF))
- context->throw_error(AL_INVALID_VALUE, "Band-pass gainlf {:f} out of range", val);
- filter->GainLF = val;
- return;
- }
- context->throw_error(AL_INVALID_ENUM, "Invalid band-pass float property {:#04x}",
- as_unsigned(param));
- }
- template<>
- void FilterTable<BandpassFilterTable>::setParamfv(ALCcontext *context, ALfilter *filter, ALenum param, const float *vals)
- { setParamf(context, filter, param, *vals); }
- template<>
- void FilterTable<BandpassFilterTable>::getParami(ALCcontext *context, const ALfilter*, ALenum param, int*)
- { context->throw_error(AL_INVALID_ENUM, "Invalid band-pass integer property {:#04x}", as_unsigned(param)); }
- template<>
- void FilterTable<BandpassFilterTable>::getParamiv(ALCcontext *context, const ALfilter *filter, ALenum param, int *values)
- { getParami(context, filter, param, values); }
- template<>
- void FilterTable<BandpassFilterTable>::getParamf(ALCcontext *context, const ALfilter *filter, ALenum param, float *val)
- {
- switch(param)
- {
- case AL_BANDPASS_GAIN: *val = filter->Gain; return;
- case AL_BANDPASS_GAINHF: *val = filter->GainHF; return;
- case AL_BANDPASS_GAINLF: *val = filter->GainLF; return;
- }
- context->throw_error(AL_INVALID_ENUM, "Invalid band-pass float property {:#04x}",
- as_unsigned(param));
- }
- template<>
- void FilterTable<BandpassFilterTable>::getParamfv(ALCcontext *context, const ALfilter *filter, ALenum param, float *vals)
- { getParamf(context, filter, param, vals); }
- AL_API DECL_FUNC2(void, alGenFilters, ALsizei,n, ALuint*,filters)
- FORCE_ALIGN void AL_APIENTRY alGenFiltersDirect(ALCcontext *context, ALsizei n, ALuint *filters) noexcept
- try {
- if(n < 0)
- context->throw_error(AL_INVALID_VALUE, "Generating {} filters", n);
- if(n <= 0) UNLIKELY return;
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- const al::span fids{filters, static_cast<ALuint>(n)};
- if(!EnsureFilters(device, fids.size()))
- context->throw_error(AL_OUT_OF_MEMORY, "Failed to allocate {} filter{}", n,
- (n==1) ? "" : "s");
- std::generate(fids.begin(), fids.end(), [device]{ return AllocFilter(device)->id; });
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC2(void, alDeleteFilters, ALsizei,n, const ALuint*,filters)
- FORCE_ALIGN void AL_APIENTRY alDeleteFiltersDirect(ALCcontext *context, ALsizei n,
- const ALuint *filters) noexcept
- try {
- if(n < 0)
- context->throw_error(AL_INVALID_VALUE, "Deleting {} filters", n);
- if(n <= 0) UNLIKELY return;
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- /* First try to find any filters that are invalid. */
- auto validate_filter = [device](const ALuint fid) -> bool
- { return !fid || LookupFilter(device, fid) != nullptr; };
- const al::span fids{filters, static_cast<ALuint>(n)};
- auto invflt = std::find_if_not(fids.begin(), fids.end(), validate_filter);
- if(invflt != fids.end())
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", *invflt);
- /* All good. Delete non-0 filter IDs. */
- auto delete_filter = [device](const ALuint fid) -> void
- {
- if(ALfilter *filter{fid ? LookupFilter(device, fid) : nullptr})
- FreeFilter(device, filter);
- };
- std::for_each(fids.begin(), fids.end(), delete_filter);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC1(ALboolean, alIsFilter, ALuint,filter)
- FORCE_ALIGN ALboolean AL_APIENTRY alIsFilterDirect(ALCcontext *context, ALuint filter) noexcept
- {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- if(!filter || LookupFilter(device, filter))
- return AL_TRUE;
- return AL_FALSE;
- }
- AL_API DECL_FUNC3(void, alFilteri, ALuint,filter, ALenum,param, ALint,value)
- FORCE_ALIGN void AL_APIENTRY alFilteriDirect(ALCcontext *context, ALuint filter, ALenum param,
- ALint value) noexcept
- try {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- switch(param)
- {
- case AL_FILTER_TYPE:
- if(!(value == AL_FILTER_NULL || value == AL_FILTER_LOWPASS
- || value == AL_FILTER_HIGHPASS || value == AL_FILTER_BANDPASS))
- context->throw_error(AL_INVALID_VALUE, "Invalid filter type {:#04x}",
- as_unsigned(value));
- InitFilterParams(alfilt, value);
- return;
- }
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,value](auto&& thunk)
- { thunk.setParami(context, alfilt, param, value); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alFilteriv, ALuint,filter, ALenum,param, const ALint*,values)
- FORCE_ALIGN void AL_APIENTRY alFilterivDirect(ALCcontext *context, ALuint filter, ALenum param,
- const ALint *values) noexcept
- try {
- switch(param)
- {
- case AL_FILTER_TYPE:
- alFilteriDirect(context, filter, param, *values);
- return;
- }
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,values](auto&& thunk)
- { thunk.setParamiv(context, alfilt, param, values); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alFilterf, ALuint,filter, ALenum,param, ALfloat,value)
- FORCE_ALIGN void AL_APIENTRY alFilterfDirect(ALCcontext *context, ALuint filter, ALenum param,
- ALfloat value) noexcept
- try {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,value](auto&& thunk)
- { thunk.setParamf(context, alfilt, param, value); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alFilterfv, ALuint,filter, ALenum,param, const ALfloat*,values)
- FORCE_ALIGN void AL_APIENTRY alFilterfvDirect(ALCcontext *context, ALuint filter, ALenum param,
- const ALfloat *values) noexcept
- try {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,values](auto&& thunk)
- { thunk.setParamfv(context, alfilt, param, values); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alGetFilteri, ALuint,filter, ALenum,param, ALint*,value)
- FORCE_ALIGN void AL_APIENTRY alGetFilteriDirect(ALCcontext *context, ALuint filter, ALenum param,
- ALint *value) noexcept
- try {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- const ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- switch(param)
- {
- case AL_FILTER_TYPE: *value = alfilt->type; return;
- }
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,value](auto&& thunk)
- { thunk.getParami(context, alfilt, param, value); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alGetFilteriv, ALuint,filter, ALenum,param, ALint*,values)
- FORCE_ALIGN void AL_APIENTRY alGetFilterivDirect(ALCcontext *context, ALuint filter, ALenum param,
- ALint *values) noexcept
- try {
- switch(param)
- {
- case AL_FILTER_TYPE:
- alGetFilteriDirect(context, filter, param, values);
- return;
- }
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- const ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,values](auto&& thunk)
- { thunk.getParamiv(context, alfilt, param, values); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alGetFilterf, ALuint,filter, ALenum,param, ALfloat*,value)
- FORCE_ALIGN void AL_APIENTRY alGetFilterfDirect(ALCcontext *context, ALuint filter, ALenum param,
- ALfloat *value) noexcept
- try {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- const ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,value](auto&& thunk)
- { thunk.getParamf(context, alfilt, param, value); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- AL_API DECL_FUNC3(void, alGetFilterfv, ALuint,filter, ALenum,param, ALfloat*,values)
- FORCE_ALIGN void AL_APIENTRY alGetFilterfvDirect(ALCcontext *context, ALuint filter, ALenum param,
- ALfloat *values) noexcept
- try {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- const ALfilter *alfilt{LookupFilter(device, filter)};
- if(!alfilt)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", filter);
- /* Call the appropriate handler */
- std::visit([context,alfilt,param,values](auto&& thunk)
- { thunk.getParamfv(context, alfilt, param, values); }, alfilt->mTypeVariant);
- }
- catch(al::base_exception&) {
- }
- catch(std::exception &e) {
- ERR("Caught exception: {}", e.what());
- }
- void ALfilter::SetName(ALCcontext *context, ALuint id, std::string_view name)
- {
- auto *device = context->mALDevice.get();
- auto filterlock = std::lock_guard{device->FilterLock};
- auto filter = LookupFilter(device, id);
- if(!filter)
- context->throw_error(AL_INVALID_NAME, "Invalid filter ID {}", id);
- device->mFilterNames.insert_or_assign(id, name);
- }
- FilterSubList::~FilterSubList()
- {
- if(!Filters)
- return;
- uint64_t usemask{~FreeMask};
- while(usemask)
- {
- const int idx{al::countr_zero(usemask)};
- std::destroy_at(al::to_address(Filters->begin() + idx));
- usemask &= ~(1_u64 << idx);
- }
- FreeMask = ~usemask;
- SubListAllocator{}.deallocate(Filters, 1);
- Filters = nullptr;
- }
|