release 0.1.13
[liba.git] / python / src / a / lpf.pxd
blob8e56d4c51f82adfe97225746f1074c79f53d641c
1 from a cimport *
3 cdef extern from "a/lpf.h":
4     ctypedef struct a_lpf:
5         a_float alpha
6         a_float output
7     a_float a_lpf_gen(a_float fc, a_float ts)
8     void a_lpf_init(a_lpf *ctx, a_float alpha)
9     a_float a_lpf_iter(a_lpf *ctx, a_float x)
10     void a_lpf_zero(a_lpf *ctx)