├── .gitignore ├── README.md ├── inc ├── filter_common.h ├── filter_includes.h ├── fo_apf.h ├── fo_hpf.h ├── fo_lpf.h ├── fo_shelving_high.h ├── fo_shelving_low.h ├── so_apf.h ├── so_bpf.h ├── so_bsf.h ├── so_butterworth_bpf.h ├── so_butterworth_bsf.h ├── so_butterworth_hpf.h ├── so_butterworth_lpf.h ├── so_hpf.h ├── so_linkwitz_riley_hpf.h ├── so_linkwitz_riley_lpf.h ├── so_lpf.h ├── so_parametric_cq_boost.h ├── so_parametric_cq_cut.h └── so_parametric_ncq.h └── src ├── fo_apf.c ├── fo_hpf.c ├── fo_lpf.c ├── fo_shelving_high.c ├── fo_shelving_low.c ├── so_apf.c ├── so_bpf.c ├── so_bsf.c ├── so_butterworth_bpf.c ├── so_butterworth_bsf.c ├── so_butterworth_hpf.c ├── so_butterworth_lpf.c ├── so_hpf.c ├── so_linkwitz_riley_hpf.c ├── so_linkwitz_riley_lpf.c ├── so_lpf.c ├── so_parametric_cq_boost.c ├── so_parametric_cq_cut.c └── so_parametric_ncq.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/README.md -------------------------------------------------------------------------------- /inc/filter_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/filter_common.h -------------------------------------------------------------------------------- /inc/filter_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/filter_includes.h -------------------------------------------------------------------------------- /inc/fo_apf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/fo_apf.h -------------------------------------------------------------------------------- /inc/fo_hpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/fo_hpf.h -------------------------------------------------------------------------------- /inc/fo_lpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/fo_lpf.h -------------------------------------------------------------------------------- /inc/fo_shelving_high.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/fo_shelving_high.h -------------------------------------------------------------------------------- /inc/fo_shelving_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/fo_shelving_low.h -------------------------------------------------------------------------------- /inc/so_apf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_apf.h -------------------------------------------------------------------------------- /inc/so_bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_bpf.h -------------------------------------------------------------------------------- /inc/so_bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_bsf.h -------------------------------------------------------------------------------- /inc/so_butterworth_bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_butterworth_bpf.h -------------------------------------------------------------------------------- /inc/so_butterworth_bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_butterworth_bsf.h -------------------------------------------------------------------------------- /inc/so_butterworth_hpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_butterworth_hpf.h -------------------------------------------------------------------------------- /inc/so_butterworth_lpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_butterworth_lpf.h -------------------------------------------------------------------------------- /inc/so_hpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_hpf.h -------------------------------------------------------------------------------- /inc/so_linkwitz_riley_hpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_linkwitz_riley_hpf.h -------------------------------------------------------------------------------- /inc/so_linkwitz_riley_lpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_linkwitz_riley_lpf.h -------------------------------------------------------------------------------- /inc/so_lpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_lpf.h -------------------------------------------------------------------------------- /inc/so_parametric_cq_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_parametric_cq_boost.h -------------------------------------------------------------------------------- /inc/so_parametric_cq_cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_parametric_cq_cut.h -------------------------------------------------------------------------------- /inc/so_parametric_ncq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/inc/so_parametric_ncq.h -------------------------------------------------------------------------------- /src/fo_apf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/fo_apf.c -------------------------------------------------------------------------------- /src/fo_hpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/fo_hpf.c -------------------------------------------------------------------------------- /src/fo_lpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/fo_lpf.c -------------------------------------------------------------------------------- /src/fo_shelving_high.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/fo_shelving_high.c -------------------------------------------------------------------------------- /src/fo_shelving_low.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/fo_shelving_low.c -------------------------------------------------------------------------------- /src/so_apf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_apf.c -------------------------------------------------------------------------------- /src/so_bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_bpf.c -------------------------------------------------------------------------------- /src/so_bsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_bsf.c -------------------------------------------------------------------------------- /src/so_butterworth_bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_butterworth_bpf.c -------------------------------------------------------------------------------- /src/so_butterworth_bsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_butterworth_bsf.c -------------------------------------------------------------------------------- /src/so_butterworth_hpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_butterworth_hpf.c -------------------------------------------------------------------------------- /src/so_butterworth_lpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_butterworth_lpf.c -------------------------------------------------------------------------------- /src/so_hpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_hpf.c -------------------------------------------------------------------------------- /src/so_linkwitz_riley_hpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_linkwitz_riley_hpf.c -------------------------------------------------------------------------------- /src/so_linkwitz_riley_lpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_linkwitz_riley_lpf.c -------------------------------------------------------------------------------- /src/so_lpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_lpf.c -------------------------------------------------------------------------------- /src/so_parametric_cq_boost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_parametric_cq_boost.c -------------------------------------------------------------------------------- /src/so_parametric_cq_cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_parametric_cq_cut.c -------------------------------------------------------------------------------- /src/so_parametric_ncq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dimtass/dsp-c-filters/HEAD/src/so_parametric_ncq.c --------------------------------------------------------------------------------