Searched refs:nsxInst (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/include/
H A Dnoise_suppression_x.h26 * - nsxInst : Pointer to noise reduction instance that should be
30 * - nsxInst : Pointer to created noise reduction instance
35 int WebRtcNsx_Create(NsxHandle** nsxInst);
43 * - nsxInst : Pointer to NS instance that should be freed
48 int WebRtcNsx_Free(NsxHandle* nsxInst);
55 * - nsxInst : Instance that should be initialized
59 * - nsxInst : Initialized instance
64 int WebRtcNsx_Init(NsxHandle* nsxInst, uint32_t fs);
70 * - nsxInst : Instance that should be initialized
74 * - nsxInst
[all...]
/external/webrtc/src/modules/audio_processing/ns/interface/
H A Dnoise_suppression_x.h40 * - nsxInst : Pointer to noise reduction instance that should be
44 * - nsxInst : Pointer to created noise reduction instance
49 int WebRtcNsx_Create(NsxHandle** nsxInst);
57 * - nsxInst : Pointer to NS instance that should be freed
62 int WebRtcNsx_Free(NsxHandle* nsxInst);
69 * - nsxInst : Instance that should be initialized
73 * - nsxInst : Initialized instance
78 int WebRtcNsx_Init(NsxHandle* nsxInst, WebRtc_UWord32 fs);
84 * - nsxInst : Instance that should be initialized
88 * - nsxInst
[all...]
/external/webrtc/src/modules/audio_processing/ns/
H A Dnoise_suppression_x.c35 int WebRtcNsx_Create(NsxHandle** nsxInst) { argument
36 *nsxInst = (NsxHandle*)malloc(sizeof(NsxInst_t));
37 if (*nsxInst != NULL) {
38 (*(NsxInst_t**)nsxInst)->initFlag = 0;
46 int WebRtcNsx_Free(NsxHandle* nsxInst) { argument
47 free(nsxInst);
51 int WebRtcNsx_Init(NsxHandle* nsxInst, WebRtc_UWord32 fs) { argument
52 return WebRtcNsx_InitCore((NsxInst_t*)nsxInst, fs);
55 int WebRtcNsx_set_policy(NsxHandle* nsxInst, int mode) { argument
56 return WebRtcNsx_set_policy_core((NsxInst_t*)nsxInst, mod
59 WebRtcNsx_Process(NsxHandle* nsxInst, short* speechFrame, short* speechFrameHB, short* outFrame, short* outFrameHB) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
H A Dnoise_suppression_x.c19 int WebRtcNsx_Create(NsxHandle** nsxInst) { argument
21 *nsxInst = (NsxHandle*)self;
34 int WebRtcNsx_Free(NsxHandle* nsxInst) { argument
35 WebRtcSpl_FreeRealFFT(((NsxInst_t*)nsxInst)->real_fft);
36 free(nsxInst);
40 int WebRtcNsx_Init(NsxHandle* nsxInst, uint32_t fs) { argument
41 return WebRtcNsx_InitCore((NsxInst_t*)nsxInst, fs);
44 int WebRtcNsx_set_policy(NsxHandle* nsxInst, int mode) { argument
45 return WebRtcNsx_set_policy_core((NsxInst_t*)nsxInst, mode);
48 int WebRtcNsx_Process(NsxHandle* nsxInst, shor argument
[all...]

Completed in 170 milliseconds