qipp
2025-09-16 e7ac407a6aa40e94a34a772dee14e8d5fb55c45b
1
2
3
4
5
6
7
8
9
#ifndef _LIBALG_CROSSFADE_H__
#define _LIBALG_CROSSFADE_H__
 
void* alg_crossfade_create(int sample_rate ,int sample_num);
void alg_crossfade_set_param(void* handle , float tar_gaindB,float cur_gaindB, int ms );
int alg_crossfade_process(void* handle, const float* data_in , float* data_out );
void alg_crossfade_destroy(void* handle );
 
#endif