[Resolved] Dsp namespace issue?

Hello.
I just learned how to use JUCE. I am a newbie.
So, I was trying to test the dsp namespace on my audio plugin.
I declared a FIR filter such as: juce::dsp::ProcessorChain<juce::dsp::FIR::Filter> hrir_l;
But my IDE (xcode) says “No member named ‘dsp’ in namespace ‘juce’”
Am I doing something wrong here?

1 Like

Hello ! Did you include the DSP module in your project with the Projucer ? It is not there by default

4 Likes

Oh I see. Thank you so much

Two years later and this helped me out. Thank you!