#ifndef LIBALG_AFC_H__
|
#define LIBALG_AFC_H__
|
|
#include "typedefs.h"
|
|
uvoidptr alg_afc_create(int sample_rate, int sample_num);
|
void alg_afc_destroy(uvoidptr handle);
|
int alg_afc_process(uvoidptr handle, const float* data_in, float* data_out);
|
int alg_afc_process_asy(uvoidptr handle);
|
void alg_afc_set_calibration(void* handle, int calibration);
|
#endif // !LIBALG_AFC_H__
|