Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_SAT (Results 1 – 15 of 15) sorted by relevance

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dpitch_filter_c.c42 tmpW32 = WEBRTC_SPL_SAT(536862719, tmpW32, -536879104); in WebRtcIsacfix_PitchFilterCore()
61 tmpW32 = WEBRTC_SPL_SAT(1073725439, tmpW32, -1073758208); in WebRtcIsacfix_PitchFilterCore()
Dpitch_filter.c272 gainsQ12[k] = (WebRtc_Word16)WEBRTC_SPL_SAT(PITCH_MAX_GAIN_Q12, tmpW32, 0); in WebRtcIsacfix_PitchFilterGains()
Darith_routines_logist.c73 qtmp1 = WEBRTC_SPL_SAT(kHistEdges[50],xinQ15,kHistEdges[0]); in WebRtcIsacfix_Piecewise()
Dfilterbanks.c105 c = (WebRtc_Word32)WEBRTC_SPL_SAT(536870911, c, -536870912); in WebRtcIsacfix_HighpassFilterFixDec32()
Ddecode_plc.c71 o = WEBRTC_SPL_SAT((WebRtc_Word32)lim, o, (WebRtc_Word32)-lim); in plc_filterma_Fast()
Dlpc_masking_model.c55 tmp32[m] = WEBRTC_SPL_SAT(4092, tmp32[m], -4092); in WebRtcSpl_AToK_JSK()
/external/webrtc/src/common_audio/signal_processing/
Dfilter_ma_fast_q12.c44 o = WEBRTC_SPL_SAT((WebRtc_Word32)134215679, o, (WebRtc_Word32)-134217728); in WebRtcSpl_FilterMAFastQ12()
Dfilter_ar_fast_q12.c43 o = WEBRTC_SPL_SAT((WebRtc_Word32)134215679, o, (WebRtc_Word32)-134217728); in WebRtcSpl_FilterARFastQ12()
Dlpc_to_refl_coef.c53 tmp32[m] = WEBRTC_SPL_SAT(8191, tmp32[m], -8191); in WebRtcSpl_LpcToReflCoef()
Dsignal_processing_unittest.cc76 EXPECT_EQ(21, WEBRTC_SPL_SAT(a, A, B)); in TEST_F()
77 EXPECT_EQ(21, WEBRTC_SPL_SAT(a, B, A)); in TEST_F()
/external/webrtc/src/modules/audio_processing/ns/
Dnsx_core.c1010 inst->thresholdLogLrt = WEBRTC_SPL_SAT(inst->maxLrt, in WebRtcNsx_FeatureParameterExtraction()
1061 inst->thresholdSpecFlat = WEBRTC_SPL_SAT(MAX_FLAT_Q10, FACTOR_2_FLAT_Q10 in WebRtcNsx_FeatureParameterExtraction()
1100 inst->thresholdSpecDiff = WEBRTC_SPL_SAT(MAX_DIFF, FACTOR_1_LRT_DIFF in WebRtcNsx_FeatureParameterExtraction()
1763 inst->pinkNoiseExp += WEBRTC_SPL_SAT(16384, tmp_1_w32, 0); // Q14 in WebRtcNsx_DataAnalysis()
1823 energyRatio = WEBRTC_SPL_SAT(256, energyRatio, 0); in WebRtcNsx_DataSynthesis()
1990 nShifts = WEBRTC_SPL_SAT(6, nShifts, 0); in WebRtcNsx_ProcessCore()
2003 noiseSupFilterTmp[i] = (WebRtc_UWord16)WEBRTC_SPL_SAT(16384, tmpU32no2, in WebRtcNsx_ProcessCore()
2333 …inst->noiseSupFilter[i] = WEBRTC_SPL_SAT(16384, tmpU16no1, inst->denoiseBound); // 16384 = Q14(1.0… in WebRtcNsx_ProcessCore()
2431 …= WEBRTC_SPL_SAT(16384, gainTimeDomainHB, (WebRtc_Word16)(inst->denoiseBound)); // 16384 = Q14(1.0) in WebRtcNsx_ProcessCore()
/external/webrtc/src/modules/audio_processing/
Dhigh_pass_filter_impl.cc93 tmp_int32 = WEBRTC_SPL_SAT(static_cast<WebRtc_Word32>(134217727), in Filter()
/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.h130 #define WEBRTC_SPL_SAT(a, b, c) (b > a ? a : b < c ? c : b) macro
/external/webrtc/src/modules/audio_processing/aecm/
Daecm_core.c446 fft[i] = (WebRtc_Word16)WEBRTC_SPL_SAT(WEBRTC_SPL_WORD16_MAX, in InverseFFTAndWindowC()
457 aecm->outBuf[i] = (WebRtc_Word16)WEBRTC_SPL_SAT( in InverseFFTAndWindowC()