Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_UDIV (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c199 bweStr->recBwInv = WEBRTC_SPL_UDIV(1073741824, (bweStr->recBw + bweStr->recHeaderRate)); in WebRtcIsacfix_UpdateUplinkBwImpl()
214 bweStr->recBwInv = WEBRTC_SPL_UDIV(1073741824, (bweStr->recBw + bweStr->recHeaderRate)); in WebRtcIsacfix_UpdateUplinkBwImpl()
268 numPktsExpected = WEBRTC_SPL_UDIV(arrivalTime - bweStr->lastUpdate, frameSizeSampl); in WebRtcIsacfix_UpdateUplinkBwImpl()
420 …recBwAvgInv = WEBRTC_SPL_UDIV((WebRtc_UWord32)(0x80000000 + WEBRTC_SPL_RSHIFT_U32(bweStr->recBwAvg… in WebRtcIsacfix_UpdateUplinkBwImpl()
516 bweStr->recBw = WEBRTC_SPL_UDIV(1073741824, bweStr->recBwInv) - bweStr->recHeaderRate; in WebRtcIsacfix_UpdateUplinkBwImpl()
533 bweStr->recBwInv = WEBRTC_SPL_UDIV(1073741824, bweStr->recBw + bweStr->recHeaderRate); in WebRtcIsacfix_UpdateUplinkBwImpl()
726 rec_jitter_short_term_abs_inv = WEBRTC_SPL_UDIV(0x80000000, bweStr->recJitterShortTermAbs); in WebRtcIsacfix_GetDownlinkBandwidth()
888 MinBytes = (WebRtc_UWord16)WEBRTC_SPL_UDIV(WEBRTC_SPL_MUL(MinRate, FrameSamples), FS8); in WebRtcIsacfix_GetMinBytes()
Ddecode_bwe.c56 (WebRtc_UWord16)WEBRTC_SPL_UDIV(WEBRTC_SPL_UMUL(frame_samples,1000), FS), in WebRtcIsacfix_EstimateBandwidth()
/external/webrtc/src/modules/audio_processing/ns/
Dnsx_core.c967 histIndex = WEBRTC_SPL_UDIV((inst->featureSpecDiff * 5) >> inst->stages, in WebRtcNsx_FeatureParameterExtraction()
1266 tmpU32no1 = WEBRTC_SPL_UDIV(tmpU32no2, varPauseUFX); in WebRtcNsx_ComputeSpectralDifference()
1318 besselTmpFX32 -= WEBRTC_SPL_UDIV(num, den); // Q11 in WebRtcNsx_SpeechNoiseProb()
1420 tmpU32no1 = WEBRTC_SPL_UDIV(tmpU32no1, tmpU32no2); in WebRtcNsx_SpeechNoiseProb()
1425 tmpU32no3 = WEBRTC_SPL_UDIV(WEBRTC_SPL_LSHIFT_U32(inst->thresholdSpecDiff, 17), 25); in WebRtcNsx_SpeechNoiseProb()
2002 tmpU32no2 = WEBRTC_SPL_UDIV(numerator, tmpU32no1); // Q14 in WebRtcNsx_ProcessCore()
2085 tmpU32no1 = WEBRTC_SPL_UDIV(tmpU32no1, tmpU32no2); // Q11 in WebRtcNsx_ProcessCore()
2098 tmpU32no1 = WEBRTC_SPL_UDIV(tmpU32no1, tmpU32no2); // Q11 in WebRtcNsx_ProcessCore()
2150 tmpU32no3 = WEBRTC_SPL_UDIV(tmpU32no3, inst->timeAvgMagnEnergy); in WebRtcNsx_ProcessCore()
2315 tmpU32no1 = WEBRTC_SPL_UDIV(tmpU32no1, tmpU32no2); // Q11 in WebRtcNsx_ProcessCore()
[all …]
/external/webrtc/src/common_audio/signal_processing/
Dsignal_processing_unittest.cc56 EXPECT_EQ(0u, WEBRTC_SPL_UDIV(a, b)); in TEST_F()
/external/webrtc/src/common_audio/signal_processing/include/
Dsignal_processing_library.h81 #define WEBRTC_SPL_UDIV(a, b) \ macro