Skip to content

Commit 79d87d9

Browse files
committed
test
1 parent 1d3baaf commit 79d87d9

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

source/PluginProcessor.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ void PluginProcessor::changeProgramName(int, const juce::String &) {
9090

9191
//==============================================================================
9292
void PluginProcessor::prepareToPlay(const double sample_rate, const int samples_per_block) {
93+
return;
9394
// prepare to play
9495
const juce::dsp::ProcessSpec spec{
9596
sample_rate,
@@ -159,6 +160,7 @@ bool PluginProcessor::isBusesLayoutSupported(const BusesLayout &layouts) const {
159160
}
160161

161162
void PluginProcessor::processBlock(juce::AudioBuffer<float> &buffer, juce::MidiBuffer &) {
163+
return;
162164
juce::ScopedNoDenormals no_denormals;
163165
if (buffer.getNumSamples() == 0) { return; } // ignore empty blocks
164166
const auto c_use_ext_side = use_ext_side_.load(std::memory_order::relaxed);

0 commit comments

Comments
 (0)