1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

DSP: Refactored AudioBlock

This commit is contained in:
Tom Poole 2019-08-14 17:14:20 +01:00
parent 462ed5468c
commit 41055ad782
13 changed files with 826 additions and 360 deletions

View file

@ -196,7 +196,7 @@ public:
process (dsp::ProcessContextReplacing<float> (firstChan));
for (size_t chan = 1; chan < block.getNumChannels(); ++chan)
block.getSingleChannelBlock (chan).copy (firstChan);
block.getSingleChannelBlock (chan).copyFrom (firstChan);
}
}