1
2
3
4
5
6
7
8
9
10
11
12
13
| #ifndef __FIR_H__
| #define __FIR_H__
|
|
|
| void* alg_fir_create(int smpl_num,int fs);
| void alg_fir_set_coeffs(void* handle,int* coeffs,unsigned int ntaps);
| void alg_fir_set_coeffs_f(void* handle,float* coeffs,unsigned int ntaps);
|
| int alg_fir_process(void* handle,float* input ,float* output);
| void alg_fir_destroy(void* handle);
|
| #endif
|
|