Element’s Sampling Filter #725
Answered
by
mfisher31
nimrodadar
asked this question in
Q&A
-
Does element features an option to choose the type of sampling filter it uses? (Minimum phase, linear Phase, iir based, fir based etc.)? If it is, where do I find it? if its not, which sampling filter does it use? |
Beta Was this translation helpful? Give feedback.
Answered by
mfisher31
Feb 8, 2024
Replies: 2 comments 7 replies
-
Element doesn't do any filtering of its own. Are you talking about an e.q. or something? |
Beta Was this translation helpful? Give feedback.
5 replies
-
That’s the answer, half band IIR, it’s a minimum phase filter, can the other options be easily excessible through the ui? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yeah, sure. If you're looking at taking a stab at it,
src/ui/contextmenus.hpp
is where the over sample menu code is. With new menu item, it then could call another new function onelement::Processor
to change the filter. With all that said, both of those areas are something that needs badly cleaned up. e.g. oversampling code in general shouldn't directly live insideelement::Processor
, and the context menus aren't the easiest to work with (due to a bad initial design).I'd be ok with adding this as an option, but not if it requires adding tons of new code to
element::Processor
. Would have to go looking to see what's really required, but as far as I know it's the one single parameter utili…