qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
1
2
3
4
5
6
7
8
#ifndef  _VAD_H__
#define _VAD_H__
 
void* alg_vad_create(int sampRate, int sampNum);
void alg_vad_destroy(void* handle);
int alg_vad_process(uvoidptr handle, const float* data_in,float* data_out);
 
#endif // ! _VAD_H__