OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sampFreq
(Results
1 - 8
of
8
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
echo_cancellation_internal.h
19
int
sampFreq
;
22
float sampFactor; // scSampRate /
sampFreq
echo_cancellation.c
186
int32_t WebRtcAec_Init(void* aecInst, int32_t
sampFreq
, int32_t scSampFreq) {
190
if (
sampFreq
!= 8000 &&
191
sampFreq
!= 16000 &&
192
sampFreq
!= 32000 &&
193
sampFreq
!= 48000) {
196
aecpc->
sampFreq
=
sampFreq
;
204
if (WebRtcAec_InitAec(aecpc->aec, aecpc->
sampFreq
) == -1) {
217
if (aecpc->
sampFreq
== 32000 || aecpc->
sampFreq
== 48000)
[
all
...]
aec_core.h
58
int WebRtcAec_InitAec(AecCore* aec, int
sampFreq
);
echo_cancellation.h
89
* int32_t
sampFreq
Sampling frequency of data
97
int32_t WebRtcAec_Init(void* aecInst, int32_t
sampFreq
, int32_t scSampFreq);
aec_core_internal.h
103
int
sampFreq
;
aec_core.c
[
all
...]
/external/webrtc/webrtc/modules/audio_processing/aecm/
echo_control_mobile.h
64
* int32_t
sampFreq
Sampling frequency of data
71
int32_t WebRtcAecm_Init(void* aecmInst, int32_t
sampFreq
);
echo_control_mobile.c
36
int
sampFreq
;
139
int32_t WebRtcAecm_Init(void *aecmInst, int32_t
sampFreq
)
149
if (
sampFreq
!= 8000 &&
sampFreq
!= 16000)
153
aecm->
sampFreq
=
sampFreq
;
156
if (WebRtcAecm_InitCore(aecm->aecmCore, aecm->
sampFreq
) == -1)
407
if ((i == 0 && aecm->
sampFreq
== 8000) || (i == 1 && aecm->
sampFreq
== 16000))
Completed in 55 milliseconds