1
2
3
4
5
6
7
8
9
| #ifndef _LIB_AFR_HH__
| #define _LIB_AFR_HH__
|
| void* alg_afr_create(int sampRate, int sampNum);
| int alg_afr_set_param(void* handle, int ns);
| void alg_afr_destroy(void* handle);
| int alg_afr_process_asy(void* handle);
| int alg_afr_process(void* handle, const float* data_in, float* data_out);
| #endif
|
|