Searched refs:NsxInst_t (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
H A Dnsx_core_neon_offsets.c17 int offset_nsx_anaLen = offsetof(NsxInst_t, anaLen);
18 int offset_nsx_anaLen2 = offsetof(NsxInst_t, anaLen2);
19 int offset_nsx_normData = offsetof(NsxInst_t, normData);
20 int offset_nsx_analysisBuffer = offsetof(NsxInst_t, analysisBuffer);
21 int offset_nsx_synthesisBuffer = offsetof(NsxInst_t, synthesisBuffer);
22 int offset_nsx_blockLen10ms = offsetof(NsxInst_t, blockLen10ms);
23 int offset_nsx_window = offsetof(NsxInst_t, window);
24 int offset_nsx_real = offsetof(NsxInst_t, real);
25 int offset_nsx_imag = offsetof(NsxInst_t, imag);
26 int offset_nsx_noiseSupFilter = offsetof(NsxInst_t, noiseSupFilte
[all...]
H A Dnoise_suppression_x.c20 NsxInst_t* self = malloc(sizeof(NsxInst_t));
35 WebRtcSpl_FreeRealFFT(((NsxInst_t*)nsxInst)->real_fft);
41 return WebRtcNsx_InitCore((NsxInst_t*)nsxInst, fs);
45 return WebRtcNsx_set_policy_core((NsxInst_t*)nsxInst, mode);
52 (NsxInst_t*)nsxInst, speechFrame, speechFrameHB, outFrame, outFrameHB);
H A Dnsx_core.h110 } NsxInst_t; typedef in typeref:struct:NsxInst_t_
132 int32_t WebRtcNsx_InitCore(NsxInst_t* inst, uint32_t fs);
149 int WebRtcNsx_set_policy_core(NsxInst_t* inst, int mode);
169 int WebRtcNsx_ProcessCore(NsxInst_t* inst,
180 typedef void (*NoiseEstimation)(NsxInst_t* inst,
187 typedef void (*PrepareSpectrum)(NsxInst_t* inst,
193 typedef void (*SynthesisUpdate)(NsxInst_t* inst,
199 typedef void (*AnalysisUpdate)(NsxInst_t* inst,
205 typedef void (*Denormalize) (NsxInst_t* inst, int16_t* in, int factor);
209 typedef void (*NormalizeRealBuffer) (NsxInst_t* ins
[all...]
H A Dnsx_core_mips.c25 void WebRtcNsx_SpeechNoiseProb(NsxInst_t* inst,
332 void WebRtcNsx_AnalysisUpdate_mips(NsxInst_t* inst,
508 void WebRtcNsx_SynthesisUpdate_mips(NsxInst_t* inst,
760 void WebRtcNsx_PrepareSpectrum_mips(NsxInst_t* inst, int16_t* freq_buf) {
866 void WebRtcNsx_Denormalize_mips(NsxInst_t* inst, int16_t* in, int factor) {
954 void WebRtcNsx_NormalizeRealBuffer_mips(NsxInst_t* inst,
H A Dnsx_core_neon.c59 static void UpdateNoiseEstimateNeon(NsxInst_t* inst, int offset) {
136 void WebRtcNsx_NoiseEstimationNeon(NsxInst_t* inst,
365 void WebRtcNsx_PrepareSpectrumNeon(NsxInst_t* inst, int16_t* freq_buf) {
453 void WebRtcNsx_DenormalizeNeon(NsxInst_t* inst, int16_t* in, int factor) {
492 void WebRtcNsx_SynthesisUpdateNeon(NsxInst_t* inst,
603 void WebRtcNsx_AnalysisUpdateNeon(NsxInst_t* inst,
680 void WebRtcNsx_CreateComplexBufferNeon(NsxInst_t* inst,
H A Dnsx_core.c303 static void UpdateNoiseEstimate(NsxInst_t* inst, int offset) {
335 static void NoiseEstimationC(NsxInst_t* inst,
458 static void PrepareSpectrumC(NsxInst_t* inst, int16_t* freq_buf) {
479 static void DenormalizeC(NsxInst_t* inst, int16_t* in, int factor) {
491 static void SynthesisUpdateC(NsxInst_t* inst,
524 static void AnalysisUpdateC(NsxInst_t* inst,
544 static void NormalizeRealBufferC(NsxInst_t* inst,
584 void WebRtcNsx_CalcParametricNoiseEstimate(NsxInst_t* inst,
630 int32_t WebRtcNsx_InitCore(NsxInst_t* inst, uint32_t fs) {
792 int WebRtcNsx_set_policy_core(NsxInst_t* ins
[all...]
H A Dnsx_core_c.c25 void WebRtcNsx_SpeechNoiseProb(NsxInst_t* inst,
H A Dnsx_core_neon.S74 @ void NoiseEstimationNeon(NsxInst_t* inst,
359 @ static void UpdateNoiseEstimateNeon(NsxInst_t* inst, int offset);
429 @ void PrepareSpectrumNeon(NsxInst_t* inst, int16_t* freq_buf);
519 @ void SynthesisUpdateNeon(NsxInst_t* inst,
594 @ void AnalysisUpdateNeon(NsxInst_t* inst, int16_t* out, int16_t* new_speech);
/external/webrtc/src/modules/audio_processing/ns/
H A Dnoise_suppression_x.c36 *nsxInst = (NsxHandle*)malloc(sizeof(NsxInst_t));
38 (*(NsxInst_t**)nsxInst)->initFlag = 0;
52 return WebRtcNsx_InitCore((NsxInst_t*)nsxInst, fs);
56 return WebRtcNsx_set_policy_core((NsxInst_t*)nsxInst, mode);
63 (NsxInst_t*)nsxInst, speechFrame, speechFrameHB, outFrame, outFrameHB);
H A Dnsx_core.h102 } NsxInst_t; typedef in typeref:struct:NsxInst_t_
124 WebRtc_Word32 WebRtcNsx_InitCore(NsxInst_t* inst, WebRtc_UWord32 fs);
141 int WebRtcNsx_set_policy_core(NsxInst_t* inst, int mode);
161 int WebRtcNsx_ProcessCore(NsxInst_t* inst,
172 typedef void (*NoiseEstimation)(NsxInst_t* inst,
179 typedef void (*PrepareSpectrum)(NsxInst_t* inst,
185 typedef void (*SynthesisUpdate)(NsxInst_t* inst,
191 typedef void (*AnalysisUpdate)(NsxInst_t* inst,
197 typedef void (*Denormalize)(NsxInst_t* inst,
204 typedef void (*CreateComplexBuffer)(NsxInst_t* ins
[all...]
H A Dnsx_core_neon.c17 static void UpdateNoiseEstimateNeon(NsxInst_t* inst, int offset) {
95 static void NoiseEstimationNeon(NsxInst_t* inst,
323 static void PrepareSpectrumNeon(NsxInst_t* inst, int16_t* freq_buf) {
458 static __inline void DenormalizeNeon(NsxInst_t* inst, int16_t* in, int factor) {
497 static void SynthesisUpdateNeon(NsxInst_t* inst,
608 static void AnalysisUpdateNeon(NsxInst_t* inst,
685 static __inline void CreateComplexBufferNeon(NsxInst_t* inst,
H A Dnsx_core.c439 static void UpdateNoiseEstimate(NsxInst_t* inst, int offset) {
471 static void NoiseEstimationC(NsxInst_t* inst,
594 static void PrepareSpectrumC(NsxInst_t* inst, int16_t* freq_buf) {
619 static __inline void DenormalizeC(NsxInst_t* inst, int16_t* in, int factor) {
631 static void SynthesisUpdateC(NsxInst_t* inst,
664 static void AnalysisUpdateC(NsxInst_t* inst,
685 static __inline void CreateComplexBufferC(NsxInst_t* inst,
695 void WebRtcNsx_CalcParametricNoiseEstimate(NsxInst_t* inst,
741 WebRtc_Word32 WebRtcNsx_InitCore(NsxInst_t* inst, WebRtc_UWord32 fs) {
892 int WebRtcNsx_set_policy_core(NsxInst_t* ins
[all...]

Completed in 6099 milliseconds