Including juice_dsp

Hi,

Apologies for the basic question but I’m a little confused. In the DSPModulePluginDemo, it’s using dsp::Convolution, etc. I’m hoping to use the FIR filtering class in my own plugin.

However, I don’t see the juce_dsp namespace specifically included/imported anywhere in the demo code, yet when I try and use it in my own (blank) plugin, the dsp namespace is undefined.

So my question is a) why is this? and b) what needs to be done in order to use the juce_dsp classes?

Thanks for any help! Look forward to some follow up questions on why my FIR filtering isn’t working :wink:

You need to add the dsp module in the Projucer:

1 Like

Oh perfect, thank you!