diff options
author | Chris Robinson <[email protected]> | 2023-01-16 21:45:03 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-01-16 21:45:03 -0800 |
commit | 3d00147b99d4996f322ff231a7e0e7d9aff86f60 (patch) | |
tree | aa6dde806a0d279fad83d77dbbf4f5f8356c6ce4 /alc/effects/equalizer.cpp | |
parent | 8e9833c7a6dfe53b570d5a021888f2a5397b4796 (diff) |
Change a couple macros to constexpr variables
Diffstat (limited to 'alc/effects/equalizer.cpp')
-rw-r--r-- | alc/effects/equalizer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/effects/equalizer.cpp b/alc/effects/equalizer.cpp index f7e2a071..9d7cccef 100644 --- a/alc/effects/equalizer.cpp +++ b/alc/effects/equalizer.cpp @@ -87,7 +87,7 @@ namespace { struct EqualizerState final : public EffectState { struct { - uint mTargetChannel{INVALID_CHANNEL_INDEX}; + uint mTargetChannel{InvalidChannelIndex}; /* Effect parameters */ BiquadFilter mFilter[4]; @@ -113,7 +113,7 @@ void EqualizerState::deviceUpdate(const DeviceBase*, const Buffer&) { for(auto &e : mChans) { - e.mTargetChannel = INVALID_CHANNEL_INDEX; + e.mTargetChannel = InvalidChannelIndex; std::for_each(std::begin(e.mFilter), std::end(e.mFilter), std::mem_fn(&BiquadFilter::clear)); e.mCurrentGain = 0.0f; @@ -176,7 +176,7 @@ void EqualizerState::process(const size_t samplesToDo, const al::span<const Floa for(const auto &input : samplesIn) { const size_t outidx{chan->mTargetChannel}; - if(outidx != INVALID_CHANNEL_INDEX) + if(outidx != InvalidChannelIndex) { const al::span<const float> inbuf{input.data(), samplesToDo}; DualBiquad{chan->mFilter[0], chan->mFilter[1]}.process(inbuf, buffer.begin()); |