Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_WORD16_MAX (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Ddecode_plc.c151 *A = WEBRTC_SPL_WORD16_MAX - *B; in MemshipValQ15()
156 *A = WEBRTC_SPL_WORD16_MAX; in MemshipValQ15()
170 *B = WEBRTC_SPL_WORD16_MAX - *A; in MemshipValQ15()
176 *B = WEBRTC_SPL_WORD16_MAX; in MemshipValQ15()
402 (ISACdec_obj->plcstr_obj).A = WEBRTC_SPL_WORD16_MAX; in WebRtcIsacfix_DecodePlcImpl()
407 )? WEBRTC_SPL_WORD16_MAX:0; in WebRtcIsacfix_DecodePlcImpl()
409 (ISACdec_obj->plcstr_obj).B = WEBRTC_SPL_WORD16_MAX - in WebRtcIsacfix_DecodePlcImpl()
417 )? WEBRTC_SPL_WORD16_MAX:0; in WebRtcIsacfix_DecodePlcImpl()
418 (ISACdec_obj->plcstr_obj).B = WEBRTC_SPL_WORD16_MAX - in WebRtcIsacfix_DecodePlcImpl()
509 while( maxCoeff > WEBRTC_SPL_WORD16_MAX ) in WebRtcIsacfix_DecodePlcImpl()
Dinitialize.c151 State->decayCoeffPriodic = WEBRTC_SPL_WORD16_MAX; in WebRtcIsacfix_InitPlc()
152 State->decayCoeffNoise = WEBRTC_SPL_WORD16_MAX; in WebRtcIsacfix_InitPlc()
Ddecode.c128 … ISACdec_obj->plcstr_obj.decayCoeffPriodic = WEBRTC_SPL_WORD16_MAX; /* DECAY_RATE is in Q15 */ in WebRtcIsacfix_DecodeImpl()
129 ISACdec_obj->plcstr_obj.decayCoeffNoise = WEBRTC_SPL_WORD16_MAX; /* DECAY_RATE is in Q15 */ in WebRtcIsacfix_DecodeImpl()
/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()
Dsignal_processing_unittest.cc45 b = WEBRTC_SPL_WORD16_MAX >> 1; in TEST_F()
/external/webrtc/src/modules/audio_processing/ns/
Dns_core.c840 } else if (dTmp > WEBRTC_SPL_WORD16_MAX) { in WebRtcNs_ProcessCore()
841 dTmp = WEBRTC_SPL_WORD16_MAX; in WebRtcNs_ProcessCore()
852 } else if (dTmp > WEBRTC_SPL_WORD16_MAX) { in WebRtcNs_ProcessCore()
853 dTmp = WEBRTC_SPL_WORD16_MAX; in WebRtcNs_ProcessCore()
1246 } else if (dTmp > WEBRTC_SPL_WORD16_MAX) { in WebRtcNs_ProcessCore()
1247 dTmp = WEBRTC_SPL_WORD16_MAX; in WebRtcNs_ProcessCore()
1296 } else if (dTmp > WEBRTC_SPL_WORD16_MAX) { in WebRtcNs_ProcessCore()
1297 dTmp = WEBRTC_SPL_WORD16_MAX; in WebRtcNs_ProcessCore()
/external/webrtc/src/common_audio/vad/
Dvad_sp.c176 tmp32 += WEBRTC_SPL_MUL_16_16(WEBRTC_SPL_WORD16_MAX - alpha, current_median); in WebRtcVad_FindMinimum()
/external/webrtc/src/modules/audio_processing/aecm/
Daecm_core.c446 fft[i] = (WebRtc_Word16)WEBRTC_SPL_SAT(WEBRTC_SPL_WORD16_MAX, in InverseFFTAndWindowC()
458 WEBRTC_SPL_WORD16_MAX, in InverseFFTAndWindowC()
645 aecm->farEnergyMin = WEBRTC_SPL_WORD16_MAX; in WebRtcAecm_InitCore()
825 if ((filtOld == WEBRTC_SPL_WORD16_MAX) | (filtOld == WEBRTC_SPL_WORD16_MIN)) in WebRtcAecm_AsymFilt()
1755 aecm->nearFilt[i] = WEBRTC_SPL_WORD16_MAX; in WebRtcAecm_ProcessBlock()
/external/webrtc/src/modules/audio_processing/aec/
Daec_core.c842 eInt16[i] = (int16_t)WEBRTC_SPL_SAT(WEBRTC_SPL_WORD16_MAX, e[i], in ProcessBlock()
1137 output[i] = (short)WEBRTC_SPL_SAT(WEBRTC_SPL_WORD16_MAX, fft[i], in NonLinearProcessing()
1176 outputH[i] = (short)WEBRTC_SPL_SAT(WEBRTC_SPL_WORD16_MAX, dtmp, in NonLinearProcessing()
/external/webrtc/src/common_audio/signal_processing/include/
Dsignal_processing_library.h29 #define WEBRTC_SPL_WORD16_MAX 32767 macro