1 #ifndef __SPEECH_FF_2MIC_NS2_H__ 2 #define __SPEECH_FF_2MIC_NS2_H__ 3 4 #include <stdint.h> 5 6 #ifdef __cplusplus 7 extern "C" { 8 #endif 9 struct SpeechFF2MicNs2State_; 10 typedef struct SpeechFF2MicNs2State_ SpeechFF2MicNs2State; 11 SpeechFF2MicNs2State *speech_ff_2mic_ns2_create(int sample_rate, int frame_size); 12 int32_t speech_ff_2mic_ns2_destroy(SpeechFF2MicNs2State *st); 13 void speech_ff_2mic_ns2_process(SpeechFF2MicNs2State *st, short *inF, short *inR); 14 #ifdef __cplusplus 15 } 16 #endif 17 18 #endif