Default Oversampling Filter
-
I noticed there are two oversampling methods in JUCE source code (FIR & IIR).
What method is defaulty used Hise? And how to switch from one to another one?
-
Well, I guess I didn't read the header file carefully...
Seems like the FIR one is disabled in the header file by default.Make sure enable the filterHalfBandFIREquiripple in the header file before compiling Hise if you decide to use oversampling in linear phase plugins.
-
Ah, is that why my multiband is a bit wonky! I've been using my own C++ linear phase multiband and noticed it doesn't play well with hise oversampling...
-
@griffinboy Yup that has been a sensible request for quite some time now (I think @Dan-Korneff was the OG of asking for that). I'll add another parameter to the container that lets you select the oversampling type).
-
Wow lovely thanks, then I can release my filters here : )