Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_MAX (Results 1 – 17 of 17) sorted by relevance

/external/webrtc/modules/audio_coding/codecs/ilbc/
Dframe_classify.c55 scale1 = WEBRTC_SPL_MAX(0, scale); in WebRtcIlbcfix_FrameClassify()
69 scale1 = WEBRTC_SPL_MAX(0, scale); in WebRtcIlbcfix_FrameClassify()
Dsmooth.c57 max12 = WEBRTC_SPL_MAX(max1, max2); in WebRtcIlbcfix_Smooth()
60 scale=WEBRTC_SPL_MAX(0, scale); in WebRtcIlbcfix_Smooth()
141 endiff = WEBRTC_SPL_MAX(0, endiff); in WebRtcIlbcfix_Smooth()
Dcb_search_core.c53 *cDotPtr=WEBRTC_SPL_MAX(0, (*cDotPtr)); in WebRtcIlbcfix_CbSearchCore()
80 max = WEBRTC_SPL_MAX((*inverseEnergyShiftPtr), max); in WebRtcIlbcfix_CbSearchCore()
Denhancer_interface.c127 shifts = WEBRTC_SPL_MAX(0, shifts); in WebRtcIlbcfix_EnhancerInterface()
139 start = WEBRTC_SPL_MAX(2, lagmax[i]) - 2; in WebRtcIlbcfix_EnhancerInterface()
262 max = WEBRTC_SPL_MAX(max, max16); in WebRtcIlbcfix_EnhancerInterface()
264 scale=WEBRTC_SPL_MAX(scale,0); in WebRtcIlbcfix_EnhancerInterface()
Dgain_dequant.c41 scale = WEBRTC_SPL_MAX(1638, scale); /* if lower than 0.1, set it to 0.1 */ in WebRtcIlbcfix_GainDequant()
Denergy_inverse.c36 (*energyPtr)=WEBRTC_SPL_MAX((*energyPtr),16384); in WebRtcIlbcfix_EnergyInverse()
Dcb_mem_energy_calc.c53 energy = WEBRTC_SPL_MAX(energy, 0); in WebRtcIlbcfix_CbMemEnergyCalc()
Dgain_quant.c42 scale = WEBRTC_SPL_MAX(1638, maxIn); in WebRtcIlbcfix_GainQuant()
Dstate_search.c55 scaleRes = WEBRTC_SPL_MAX(0, scaleRes); in WebRtcIlbcfix_StateSearch()
Dxcorr_coef.c109 scalediff=WEBRTC_SPL_MAX(scalediff,-31); in WebRtcIlbcfix_XcorrCoef()
Dcb_search.c121 temp1 = WEBRTC_SPL_MAX(temp1, temp2); in WebRtcIlbcfix_CbSearch()
130 scale = WEBRTC_SPL_MAX(0, scale); in WebRtcIlbcfix_CbSearch()
Dencode.c405 for (subframe = 0; subframe < WEBRTC_SPL_MAX (2 - Nfor, 0); subframe++) in WebRtcIlbcfix_EncodeImpl()
/external/webrtc/modules/audio_processing/aecm/
Decho_control_mobile.cc315 WEBRTC_SPL_MAX(0.2 * aecm->msInSndCardBuf, kSampMsNb)) { in WebRtcAecm_Process()
551 WEBRTC_SPL_MAX(0, (8 * aecm->filtDelay + 2 * delayNew) / 10); in WebRtcAecm_EstBufDelay()
572 aecm->knownDelay = WEBRTC_SPL_MAX((int)aecm->filtDelay - 160, 0); in WebRtcAecm_EstBufDelay()
589 (int)(WEBRTC_SPL_MAX(((nSampSndCard >> 1) - nSampFar), FRAME_LEN)); in WebRtcAecm_DelayComp()
/external/webrtc/modules/audio_processing/agc/legacy/
Danalog_agc.cc767 stt->maxLevel = WEBRTC_SPL_MAX(stt->maxLevel, stt->maxAnalog); in WebRtcAgc_ProcessAnalog()
801 stt->maxLevel = WEBRTC_SPL_MAX(stt->maxLevel, stt->maxAnalog); in WebRtcAgc_ProcessAnalog()
Ddigital_agc.cc98 maxGain = WEBRTC_SPL_MAX(tmp16no1, (analogTarget - targetLevelDbfs)); in WebRtcAgc_CalculateGainTable()
/external/webrtc/common_audio/signal_processing/include/
Dsignal_processing_library.h31 #define WEBRTC_SPL_MAX(A, B) (A > B ? A : B) // Get max value macro
/external/webrtc/common_audio/signal_processing/
Dsignal_processing_unittest.cc36 EXPECT_EQ(21, WEBRTC_SPL_MAX(A, B)); in TEST()