-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from spotify/psobot/delay-plugin
Add Delay plugin.
- Loading branch information
Showing
5 changed files
with
174 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
/* | ||
* pedalboard | ||
* Copyright 2022 Spotify AB | ||
* | ||
* Licensed under the GNU Public License, Version 3.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.gnu.org/licenses/gpl-3.0.html | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "../JucePlugin.h" | ||
|
||
namespace Pedalboard { | ||
template <typename SampleType> | ||
class Delay : public JucePlugin<juce::dsp::DelayLine< | ||
SampleType, juce::dsp::DelayLineInterpolationTypes::None>> { | ||
public: | ||
SampleType getDelaySeconds() const { return delaySeconds; } | ||
void setDelaySeconds(const SampleType value) { | ||
if (value < 0.0 || value > MAXIMUM_DELAY_TIME_SECONDS) { | ||
throw std::range_error("Delay (in seconds) must be between 0.0s and " + | ||
std::to_string(MAXIMUM_DELAY_TIME_SECONDS) + "s."); | ||
} | ||
delaySeconds = value; | ||
}; | ||
SampleType getFeedback() const { return feedback; } | ||
void setFeedback(const SampleType value) { | ||
if (value < 0.0 || value > 1.0) { | ||
throw std::range_error("Feedback must be between 0.0 and 1.0."); | ||
} | ||
feedback = value; | ||
}; | ||
SampleType getMix() const { return mix; } | ||
void setMix(const SampleType value) { | ||
if (value < 0.0 || value > 1.0) { | ||
throw std::range_error("Mix must be between 0.0 and 1.0."); | ||
} | ||
mix = value; | ||
}; | ||
|
||
virtual void prepare(const juce::dsp::ProcessSpec &spec) override { | ||
if (this->lastSpec.sampleRate != spec.sampleRate || | ||
this->lastSpec.maximumBlockSize < spec.maximumBlockSize || | ||
spec.numChannels != this->lastSpec.numChannels) { | ||
this->getDSP().setMaximumDelayInSamples( | ||
(int)(MAXIMUM_DELAY_TIME_SECONDS * spec.sampleRate)); | ||
this->getDSP().prepare(spec); | ||
this->lastSpec = spec; | ||
} | ||
|
||
this->getDSP().setDelay((int)(delaySeconds * spec.sampleRate)); | ||
} | ||
|
||
virtual void reset() override { this->getDSP().reset(); } | ||
|
||
virtual int process( | ||
const juce::dsp::ProcessContextReplacing<SampleType> &context) override { | ||
// TODO: More advanced mixing rules than "linear?" | ||
SampleType dryVolume = 1.0f - getMix(); | ||
SampleType wetVolume = getMix(); | ||
|
||
if (delaySeconds == 0.0f) { | ||
// Special case where DelayLine doesn't do anything for us. | ||
// Regardless of the mix or feedback parameters, the input will sound | ||
// identical. | ||
return context.getInputBlock().getNumSamples(); | ||
} | ||
|
||
this->getDSP().setDelay((int)(delaySeconds * this->lastSpec.sampleRate)); | ||
|
||
// Pass samples through the delay line with feedback: | ||
for (size_t c = 0; c < context.getInputBlock().getNumChannels(); c++) { | ||
jassert(context.getInputBlock().getChannelPointer(c) == | ||
context.getOutputBlock().getChannelPointer(c)); | ||
SampleType *channelBuffer = context.getOutputBlock().getChannelPointer(c); | ||
|
||
for (size_t i = 0; i < context.getInputBlock().getNumSamples(); i++) { | ||
SampleType delayOutput = this->getDSP().popSample(c); | ||
this->getDSP().pushSample(c, channelBuffer[i] + | ||
(getFeedback() * delayOutput)); | ||
channelBuffer[i] = | ||
(channelBuffer[i] * dryVolume) + (wetVolume * delayOutput); | ||
} | ||
} | ||
return context.getInputBlock().getNumSamples(); | ||
} | ||
|
||
private: | ||
SampleType delaySeconds = 1.0f; | ||
SampleType feedback = 0.0f; | ||
SampleType mix = 1.0f; | ||
static constexpr int MAXIMUM_DELAY_TIME_SECONDS = 30; | ||
}; | ||
|
||
inline void init_delay(py::module &m) { | ||
py::class_<Delay<float>, Plugin>( | ||
m, "Delay", | ||
"A digital delay plugin with controllable delay time, feedback " | ||
"percentage, and dry/wet mix.") | ||
.def(py::init([](float delaySeconds, float feedback, float mix) { | ||
auto delay = new Delay<float>(); | ||
delay->setDelaySeconds(delaySeconds); | ||
delay->setFeedback(feedback); | ||
delay->setMix(mix); | ||
return delay; | ||
}), | ||
py::arg("delay_seconds") = 0.5, py::arg("feedback") = 0.0, | ||
py::arg("mix") = 0.5) | ||
.def("__repr__", | ||
[](const Delay<float> &plugin) { | ||
std::ostringstream ss; | ||
ss << "<pedalboard.Delay"; | ||
ss << " delay_seconds=" << plugin.getDelaySeconds(); | ||
ss << " feedback=" << plugin.getFeedback(); | ||
ss << " mix=" << plugin.getMix(); | ||
ss << " at " << &plugin; | ||
ss << ">"; | ||
return ss.str(); | ||
}) | ||
.def_property("delay_seconds", &Delay<float>::getDelaySeconds, | ||
&Delay<float>::setDelaySeconds) | ||
.def_property("feedback", &Delay<float>::getFeedback, | ||
&Delay<float>::setFeedback) | ||
.def_property("mix", &Delay<float>::getMix, &Delay<float>::setMix); | ||
} | ||
}; // namespace Pedalboard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters