123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- /**
- * OpenAL cross platform audio library
- * Copyright (C) 2013 by Mike Gorchak
- * 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 <algorithm>
- #include <array>
- #include <cmath>
- #include <cstdlib>
- #include <variant>
- #include "alc/effects/base.h"
- #include "alnumbers.h"
- #include "alnumeric.h"
- #include "alspan.h"
- #include "core/ambidefs.h"
- #include "core/bufferline.h"
- #include "core/context.h"
- #include "core/device.h"
- #include "core/effects/base.h"
- #include "core/effectslot.h"
- #include "core/filters/biquad.h"
- #include "core/mixer.h"
- #include "core/mixer/defs.h"
- #include "intrusive_ptr.h"
- struct BufferStorage;
- namespace {
- struct DistortionState final : public EffectState {
- /* Effect gains for each channel */
- std::array<float,MaxAmbiChannels> mGain{};
- /* Effect parameters */
- BiquadFilter mLowpass;
- BiquadFilter mBandpass;
- float mAttenuation{};
- float mEdgeCoeff{};
- alignas(16) std::array<FloatBufferLine,2> mBuffer{};
- void deviceUpdate(const DeviceBase *device, const BufferStorage *buffer) override;
- void update(const ContextBase *context, const EffectSlot *slot, const EffectProps *props,
- const EffectTarget target) override;
- void process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn,
- const al::span<FloatBufferLine> samplesOut) override;
- };
- void DistortionState::deviceUpdate(const DeviceBase*, const BufferStorage*)
- {
- mLowpass.clear();
- mBandpass.clear();
- }
- void DistortionState::update(const ContextBase *context, const EffectSlot *slot,
- const EffectProps *props_, const EffectTarget target)
- {
- auto &props = std::get<DistortionProps>(*props_);
- const DeviceBase *device{context->mDevice};
- /* Store waveshaper edge settings. */
- const float edge{std::min(std::sin(al::numbers::pi_v<float>*0.5f * props.Edge), 0.99f)};
- mEdgeCoeff = 2.0f * edge / (1.0f-edge);
- float cutoff{props.LowpassCutoff};
- /* Bandwidth value is constant in octaves. */
- float bandwidth{(cutoff / 2.0f) / (cutoff * 0.67f)};
- /* Divide normalized frequency by the amount of oversampling done during
- * processing.
- */
- auto frequency = static_cast<float>(device->Frequency);
- mLowpass.setParamsFromBandwidth(BiquadType::LowPass, cutoff/frequency/4.0f, 1.0f, bandwidth);
- cutoff = props.EQCenter;
- /* Convert bandwidth in Hz to octaves. */
- bandwidth = props.EQBandwidth / (cutoff * 0.67f);
- mBandpass.setParamsFromBandwidth(BiquadType::BandPass, cutoff/frequency/4.0f, 1.0f, bandwidth);
- static constexpr auto coeffs = CalcDirectionCoeffs(std::array{0.0f, 0.0f, -1.0f});
- mOutTarget = target.Main->Buffer;
- ComputePanGains(target.Main, coeffs, slot->Gain*props.Gain, mGain);
- }
- void DistortionState::process(const size_t samplesToDo, const al::span<const FloatBufferLine> samplesIn, const al::span<FloatBufferLine> samplesOut)
- {
- const float fc{mEdgeCoeff};
- for(size_t base{0u};base < samplesToDo;)
- {
- /* Perform 4x oversampling to avoid aliasing. Oversampling greatly
- * improves distortion quality and allows to implement lowpass and
- * bandpass filters using high frequencies, at which classic IIR
- * filters became unstable.
- */
- size_t todo{std::min(BufferLineSize, (samplesToDo-base) * 4_uz)};
- /* Fill oversample buffer using zero stuffing. Multiply the sample by
- * the amount of oversampling to maintain the signal's power.
- */
- for(size_t i{0u};i < todo;i++)
- mBuffer[0][i] = !(i&3) ? samplesIn[0][(i>>2)+base] * 4.0f : 0.0f;
- /* First step, do lowpass filtering of original signal. Additionally
- * perform buffer interpolation and lowpass cutoff for oversampling
- * (which is fortunately first step of distortion). So combine three
- * operations into the one.
- */
- mLowpass.process(al::span{mBuffer[0]}.first(todo), mBuffer[1]);
- /* Second step, do distortion using waveshaper function to emulate
- * signal processing during tube overdriving. Three steps of
- * waveshaping are intended to modify waveform without boost/clipping/
- * attenuation process.
- */
- auto proc_sample = [fc](float smp) -> float
- {
- smp = (1.0f + fc) * smp/(1.0f + fc*std::fabs(smp));
- smp = (1.0f + fc) * smp/(1.0f + fc*std::fabs(smp)) * -1.0f;
- smp = (1.0f + fc) * smp/(1.0f + fc*std::fabs(smp));
- return smp;
- };
- std::transform(mBuffer[1].begin(), mBuffer[1].begin()+todo, mBuffer[0].begin(),
- proc_sample);
- /* Third step, do bandpass filtering of distorted signal. */
- mBandpass.process(al::span{mBuffer[0]}.first(todo), mBuffer[1]);
- todo >>= 2;
- auto outgains = mGain.cbegin();
- auto proc_bufline = [this,base,todo,&outgains](FloatBufferSpan output)
- {
- /* Fourth step, final, do attenuation and perform decimation,
- * storing only one sample out of four.
- */
- const float gain{*(outgains++)};
- if(!(std::fabs(gain) > GainSilenceThreshold))
- return;
- auto src = mBuffer[1].cbegin();
- const auto dst = al::span{output}.subspan(base, todo);
- auto dec_sample = [gain,&src](float sample) noexcept -> float
- {
- sample += *src * gain;
- src += 4;
- return sample;
- };
- std::transform(dst.begin(), dst.end(), dst.begin(), dec_sample);
- };
- std::for_each(samplesOut.begin(), samplesOut.end(), proc_bufline);
- base += todo;
- }
- }
- struct DistortionStateFactory final : public EffectStateFactory {
- al::intrusive_ptr<EffectState> create() override
- { return al::intrusive_ptr<EffectState>{new DistortionState{}}; }
- };
- } // namespace
- EffectStateFactory *DistortionStateFactory_getFactory()
- {
- static DistortionStateFactory DistortionFactory{};
- return &DistortionFactory;
- }
|