OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NsxInst_t
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/src/modules/audio_processing/ns/
noise_suppression_x.c
36
*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);
nsx_core.h
102
}
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
* inst
[
all
...]
nsx_core_neon.c
17
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,
nsx_core.c
439
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,
[
all
...]
Completed in 284 milliseconds