HomeSort by relevance Sort by last modified time
    Searched refs:sampFreq (Results 1 - 6 of 6) sorted by null

  /external/webrtc/src/modules/audio_processing/aecm/interface/
echo_control_mobile.h 76 * WebRtc_Word32 sampFreq Sampling frequency of data
84 WebRtc_Word32 sampFreq);
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.h 118 int sampFreq;
169 int WebRtcAec_InitAec(aec_t *aec, int sampFreq);
echo_cancellation.c 48 int sampFreq;
51 float sampFactor; // scSampRate / sampFreq
199 WebRtc_Word32 WebRtcAec_Init(void *aecInst, WebRtc_Word32 sampFreq, WebRtc_Word32 scSampFreq)
208 if (sampFreq != 8000 && sampFreq != 16000 && sampFreq != 32000) {
212 aecpc->sampFreq = sampFreq;
221 if (WebRtcAec_InitAec(aecpc->aec, aecpc->sampFreq) == -1) {
239 if (aecpc->sampFreq == 32000)
    [all...]
aec_core.c 385 int WebRtcAec_InitAec(aec_t *aec, int sampFreq)
389 aec->sampFreq = sampFreq;
391 if (sampFreq == 8000) {
442 if (aec->sampFreq == 32000) {
443 aec->mult = (short)aec->sampFreq / 16000;
446 aec->mult = (short)aec->sampFreq / 8000;
599 if (aec->sampFreq == 32000) {
663 if (aec->sampFreq == 32000) {
834 if (aec->sampFreq == 32000)
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/interface/
echo_cancellation.h 99 * WebRtc_Word32 sampFreq Sampling frequency of data
108 WebRtc_Word32 sampFreq,
  /external/webrtc/src/modules/audio_processing/aecm/
echo_control_mobile.c 42 int sampFreq;
163 WebRtc_Word32 WebRtcAecm_Init(void *aecmInst, WebRtc_Word32 sampFreq)
173 if (sampFreq != 8000 && sampFreq != 16000)
178 aecm->sampFreq = sampFreq;
181 if (WebRtcAecm_InitCore(aecm->aecmCore, aecm->sampFreq) == -1)
450 if ((i == 0 && aecm->sampFreq == 8000) || (i == 1 && aecm->sampFreq == 16000))

Completed in 63 milliseconds