1
2
3
4
5
6
7
8
9
| #ifndef _LIB_DEEPNN_HH__
| #define _LIB_DEEPNN_HH__
| void* alg_deepnn_create(int sampRate, int sampNum);
| void alg_deepnn_destroy(void* nn);
| int alg_deepnn_set_policy(void* nn, int mode);
| int alg_deepnn_process(void* nn, const float* data_in, float* data_out);
| int alg_deepnn_process_asy(void* nn);
|
| #endif
|
|