FIR Filter for JUCE

VST, AU, AAX, CLAP, etc. Plugin Virtual Effects Discussion
Post Reply New Topic
RELATED
PRODUCTS

Post

Hallo

I am trying to implement my first experimental audio plugin using JUCE. I wanted to create a FIR filter, where the coefficients will be provided by me. JUCE has a class for IIR filters and i can make IIR filters easily using that class. Has anyone tried making a FIR Filter in JUCE? can you give me some idea or code for the FIR filter in JUCE audio plugin

Post

just keep an array of floats with your coefficients and, then, do the filtering. for each sample: multiply and accumulate.

Post

You'd be far better off asking this type of question in the DSP and Plugin Development Forum.

Post

You could just port or re-implement one of these, it's fairly easy to do.

http://www.exstrom.com/journal/sigproc/
https://github.com/kth-ros-pkg/fir_filter
https://github.com/berndporr/fir1
Confucamus.

Post

thanks for the reply. This helps a lot. Now i have some idea and some code to work around with

Post Reply

Return to “Effects”