1
0

Start chorus

This commit is contained in:
Geraint 2025-07-04 23:14:45 +01:00
parent 1797274fbb
commit 15c904aff6
3 changed files with 145 additions and 2 deletions

126
chorus.h Normal file
View File

@ -0,0 +1,126 @@
/* Copyright 2022 Signalsmith Audio Ltd. / Geraint Luff
Released under the Boost Software License (see LICENSE.txt) */
#pragma once
#include "stfx/stfx-library.h"
#include "dsp/delay.h"
#include <vector>
namespace signalsmith { namespace basics {
template<class BaseEffect>
struct ChorusSTFX;
using ChorusFloat = stfx::LibraryEffect<float, ChorusSTFX>;
using ChorusDouble = stfx::LibraryEffect<double, ChorusSTFX>;
template<class BaseEffect>
struct ChorusSTFX : public BaseEffect {
using typename BaseEffect::Sample;
using Complex = std::complex<Sample>;
using typename BaseEffect::ParamRange;
using typename BaseEffect::ParamStepped;
// Chosen so that points when the delays cross over and
static constexpr Complex oscillatorOffsets[6] = {
{Sample(-0.267409), Sample(0.195109)},
{Sample(-0.680406), Sample(-0.363478)},
{Sample(0.802226), Sample(0.551654)},
{Sample(0.188176), Sample(-0.980498)},
{Sample(0.973565), Sample(-0.204023)},
{Sample(-0.742801), Sample(0.669512)}
};
const Sample maxDepthMs;
ChorusSTFX(Sample maxDepthMs=50) : maxDepthMs(maxDepthMs) {}
ParamRange mix{0.6};
ParamRange depthMs{15};
ParamRange detune{5};
template<class Storage>
void state(Storage &storage) {
storage.info("[Basics] Chorus", "");
storage.version(0);
stfx::units::rangePercent(storage.range("mix", mix)
.info("mix", "")
.range(0, 0.5, 1));
storage.range("depthMs", depthMs)
.info("depth", "chorus delay range")
.range(2, 15, maxDepthMs)
.unit("ms", 1, 0, 9.9).unit("ms", 0);
storage.range("detune", detune)
.info("detune", "detuning depth")
.range(1, 10, 50)
.unit(" s.t.", 0);
}
template<class Config>
void configureSTFX(Config &config) {
sampleRate = config.sampleRate;
config.outputChannels = config.inputChannels;
config.auxInputs = config.auxOutputs = {};
Sample maxDelaySamples = maxDepthMs*0.001*config.sampleRate;
delay.resize(6, maxDelaySamples);
}
void reset() {
delay.reset();
}
template<class Io, class Config, class Block>
void processSTFX(Io &io, Config &config, Block &block) {
Sample detuneHz = detune*0.45f/depthMs; // 0.45ms oscillation at 1Hz is about 1 semitone
Sample phaseStep = detuneHz/config.sampleRate;
Sample depthSamples = depthMs*0.001*config.sampleRate;
std::array<Sample, 6> multiIn, multiOut;
std::array<Sample, 6> delaySamples;
Sample dry = 1 - mix*mix, wet = mix*(2 - mix)/std::sqrt(Sample(6));
for (size_t i = 0; i < block.length; ++i) {
for (size_t c = 0; c < 6; ++c) {
size_t inputC = c%config.inputChannels;
multiIn[c] = io.input[inputC][i];
}
delay.write(multiIn);
Complex phaseComplex = std::polar(Sample(1), phase*Sample(2*M_PI));
phase += phaseStep;
for (size_t c = 0; c < 6; ++c) {
Sample osc = (phaseComplex*oscillatorOffsets[c]).real();
delaySamples[c] = depthSamples*Sample(0.5)*(1 + osc);
}
delay.readMulti(delaySamples, multiOut);
for (size_t c = 0; c < config.outputChannels; ++c) {
Sample sum = 0;
for (size_t c = 0; c < 6; ++c) {
sum += multiOut[c];
}
io.output[c][i] = multiIn[c]*dry + sum*wet;
}
}
phase -= std::floor(phase);
}
template<class Storage>
void meterState(Storage &storage) {}
private:
Sample sampleRate;
signalsmith::delay::MultiDelay<Sample, signalsmith::delay::InterpolatorLagrange7> delay;
Sample phase = 0;
};
}} // namespace

View File

@ -4,6 +4,7 @@
#endif
#include "signalsmith-basics/analyser.h"
#include "signalsmith-basics/chorus.h"
#include "signalsmith-basics/crunch.h"
#include "signalsmith-basics/limiter.h"
#include "signalsmith-basics/reverb.h"
@ -12,6 +13,21 @@
static stfx::clap::Plugins plugins;
bool clap_init(const char *path) {
plugins.add<signalsmith::basics::ChorusSTFX>({
.clap_version = CLAP_VERSION,
.id = "uk.co.signalsmith.basics.chorus",
.name = "[Basics] Chorus",
.vendor = "Signalsmith Audio",
.url = "",
.manual_url = "",
.support_url = "",
.version = "1.0.0"
}, {
CLAP_PLUGIN_FEATURE_AUDIO_EFFECT,
CLAP_PLUGIN_FEATURE_CHORUS,
});
/*
plugins.add<signalsmith::basics::CrunchSTFX>({
.clap_version = CLAP_VERSION,
.id = "uk.co.signalsmith.basics.crunch",
@ -64,9 +80,9 @@ bool clap_init(const char *path) {
.support_url = "",
.version = "1.0.0"
}, {
CLAP_PLUGIN_FEATURE_AUDIO_EFFECT,
CLAP_PLUGIN_FEATURE_DISTORTION,
CLAP_PLUGIN_FEATURE_ANALYZER,
});
//*/
return plugins.clap_init(path);
}

View File

@ -0,0 +1 @@
#include "../../chorus.h"