Brickwall Oversampling Filter


#1

Excuse the naive question, but could anyone point me in the direction of a relatively simple filter function that could be applied to an oversampled oscillator before downsampling back to 48kHz?

a|x


Up/downsampling
#2

I think "Cascaded integrator comb" filters are a good candidate for oversampled oscillators, very efficient, but also quite cryptic, as they can only be implemented in integer math and make deliberate use of overflow.
Here's an implementation


but I suggest reading some theory too before trying
http://www.dspguru.com/sites/dspguru/files/cic.pdf
If you implement something, I'd suggest to validate it with a sine oscillator, and verify the stop-band attenuation.


#3

Thank you very much, Johannes. I will do a bit of reading.

a|x