qipp
2025-09-16 e7ac407a6aa40e94a34a772dee14e8d5fb55c45b
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _ALGLIB_FLANGING_H__
#define _ALGLIB_FLANGING_H__
/*
Ïâ±ßÒôЧÊÇÐźÅÓëÑÓʱÐźÅÒ»ÆðÒýÆðÏàÎ»ÒÆ¶¯£¬ÀàËÆÊá×±Â˲¨Æ÷¡£ÑÓʱµ÷ÖÆÊ¹ÓÃµÍÆµÕýÏÒ²¨¡£
*/
 
void* alg_flanging_create(int smpl_rate,int smpl_num );
int alg_flanging_process(void* handle , const float* data_in , float* data_out);
void alg_flanging_set_param(void* handle ,float feedback_gain,  int sweep_rate ,int sweep_width);
void alg_flanging_destroy(void* handle);
 
#endif