1
2
3
4
5
6
7
8
9
| #ifndef _AUTO_AGC_H__
| #define _AUTO_AGC_H__
|
| uvoidptr alg_agc_create_ex(int sampRate, int sampNum);
| uvoid alg_agc_destroy_ex(uvoidptr handle);
| uvoid alg_agc_set_param_ex(uvoidptr handle, ufloat target_level, ufloat ratio);
| int32_t alg_agc_process_ex(uvoidptr handle, const ufloat *dataIn, ufloat *dataOut);
|
| #endif
|
|