qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
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