qipp
2025-11-07 744722688187eb4991c72464e2bb5e06b244fee7
1
2
3
4
5
6
7
8
9
10
#ifndef _ECHO_H__
#define _ECHO_H__
 
void alg_echo_destroy(void* h);
void * alg_echo_create(int fs, int smpl_num);
void alg_echo_set_param(void* h, float decay_factor, int ms, int pre_delay_ms);
void alg_echo_process(void* h, const float * data_in ,float *data_out);
 
 
#endif