Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_MIN (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/
Dmin_max_operations_neon.c43 tot_max = (WebRtc_Word16)WEBRTC_SPL_MIN(temp_max, WEBRTC_SPL_WORD16_MAX); in WebRtcSpl_MaxAbsValueW16()
Dmin_max_operations.c51 totMax = (WebRtc_Word16)WEBRTC_SPL_MIN(tempMax, WEBRTC_SPL_WORD16_MAX); in WebRtcSpl_MaxAbsValueW16()
99 retval = (WebRtc_Word32)(WEBRTC_SPL_MIN(tempMax, WEBRTC_SPL_WORD32_MAX)); in WebRtcSpl_MaxAbsValueW32()
Dsignal_processing_unittest.cc33 EXPECT_EQ(10, WEBRTC_SPL_MIN(A, B)); in TEST_F()
/external/webrtc/src/modules/audio_processing/ns/
Dnsx_core.c1220 minPause = WEBRTC_SPL_MIN(minPause, inst->avgMagnPause[i]); in WebRtcNsx_ComputeSpectralDifference()
1270 avgDiffNormMagnUFX -= WEBRTC_SPL_MIN(avgDiffNormMagnUFX, tmpU32no1); in WebRtcNsx_ComputeSpectralDifference()
1413 normTmp = WEBRTC_SPL_MIN(20 - inst->stages, in WebRtcNsx_SpeechNoiseProb()
1942 q_domain_to_use = WEBRTC_SPL_MIN((int)qNoise, inst->minNorm - inst->stages); in WebRtcNsx_ProcessCore()
2086 postLocSnr[i] = WEBRTC_SPL_MIN(satMax, tmpU32no1); // Q11 in WebRtcNsx_ProcessCore()
2099 tmpU32no1 = WEBRTC_SPL_MIN(satMax, tmpU32no1); // Q11 in WebRtcNsx_ProcessCore()
2154 inst->featureSpecDiff = WEBRTC_SPL_MIN(0x007FFFFF, in WebRtcNsx_ProcessCore()
2311 norm32no2 = WEBRTC_SPL_MIN(11, WebRtcSpl_NormU32(tmpU32no1)); in WebRtcNsx_ProcessCore()
2317 curNearSnr = WEBRTC_SPL_MIN(satMax, tmpU32no1); // Q11 in WebRtcNsx_ProcessCore()
2407 gainModHB = WEBRTC_SPL_MIN(avgProbSpeechHB, 3607); in WebRtcNsx_ProcessCore()
/external/webrtc/src/modules/audio_processing/aecm/
Decho_control_mobile.c383 = WEBRTC_SPL_MIN((3 * aecm->sum in WebRtcAecm_Process()
392 aecm->bufSizeStart = WEBRTC_SPL_MIN((3 * aecm->msInSndCardBuf in WebRtcAecm_Process()
801 nSampAdd = WEBRTC_SPL_MIN(nSampAdd, maxStuffSamp); in WebRtcAecm_DelayComp()
/external/webrtc/src/modules/audio_processing/aec/
Decho_cancellation.c500 aecpc->bufSizeStart = WEBRTC_SPL_MIN((3 * aecpc->sum * in WebRtcAec_Process()
510 aecpc->bufSizeStart = WEBRTC_SPL_MIN((aecpc->msInSndCardBuf * in WebRtcAec_Process()
Daec_core.c1066 hNl[i] = WEBRTC_SPL_MIN(cohde[i], 1 - cohxd[i]); in NonLinearProcessing()
1085 aec->hNlFbLocalMin = WEBRTC_SPL_MIN(aec->hNlFbLocalMin + 0.0008f / aec->mult, 1); in NonLinearProcessing()
1086 aec->hNlXdAvgMin = WEBRTC_SPL_MIN(aec->hNlXdAvgMin + 0.0006f / aec->mult, 1); in NonLinearProcessing()
/external/webrtc/src/common_audio/signal_processing/include/
Dsignal_processing_library.h35 #define WEBRTC_SPL_MIN(A, B) (A < B ? A : B) // Get min value macro
/external/webrtc/src/modules/audio_processing/agc/
Danalog_agc.c656 *inMicLevel = WEBRTC_SPL_MIN(*inMicLevel, stt->zeroCtrlMax); in WebRtcAgc_ZeroCtrl()