Add JUCE DSP module to Projucer project. Added a sonogram view of the output audio.

This commit is contained in:
xenakios
2019-01-17 18:30:40 +02:00
parent 676ce4a025
commit 57ac702c3f
4 changed files with 133 additions and 22 deletions

View File

@ -811,6 +811,11 @@ void PaulstretchpluginAudioProcessor::processBlock (AudioSampleBuffer& buffer, M
{
buffer.clear();
}
auto ed = dynamic_cast<PaulstretchpluginAudioProcessorEditor*>(getActiveEditor());
if (ed != nullptr)
{
ed->m_sonogram.addAudioBlock(buffer);
}
}
//==============================================================================