Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_RSHIFT_U32 (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c294 reductionFactor = WEBRTC_SPL_RSHIFT_U32(0x01000000 | (exponent & 0x00FFFFFF), in WebRtcIsacfix_UpdateUplinkBwImpl()
295 WEBRTC_SPL_RSHIFT_U32(exponent, 24)); in WebRtcIsacfix_UpdateUplinkBwImpl()
298 reductionFactor = WEBRTC_SPL_RSHIFT_U32(reductionFactor, 11); in WebRtcIsacfix_UpdateUplinkBwImpl()
389 tempUpper = WEBRTC_SPL_RSHIFT_U32(byteSecondsPerBit, 15); in WebRtcIsacfix_UpdateUplinkBwImpl()
396 tempLower = WEBRTC_SPL_RSHIFT_U32(tempLower, 15); in WebRtcIsacfix_UpdateUplinkBwImpl()
399 currBwInv = WEBRTC_SPL_RSHIFT_U32(currBwInv, 4); in WebRtcIsacfix_UpdateUplinkBwImpl()
414 bweStr->recBwInv = WEBRTC_SPL_RSHIFT_U32(bweStr->recBwInv, 13); in WebRtcIsacfix_UpdateUplinkBwImpl()
433 arrTimeProj = WEBRTC_SPL_RSHIFT_U32(arrTimeProj, 4); in WebRtcIsacfix_UpdateUplinkBwImpl()
437 arrTimeProj = WEBRTC_SPL_RSHIFT_U32(arrTimeProj, 12); in WebRtcIsacfix_UpdateUplinkBwImpl()
525 bweStr->recBw = WEBRTC_SPL_RSHIFT_U32(bweStr->recBw, 10); in WebRtcIsacfix_UpdateUplinkBwImpl()
[all …]
Darith_routines_logist.c78 qtmp2 = (uint16_t)WEBRTC_SPL_RSHIFT_U32( in WebRtcIsacfix_Piecewise()
151 W_upper_MSB = (uint16_t)WEBRTC_SPL_RSHIFT_U32(W_upper, 16); in WebRtcIsacfix_EncLogisticMulti2()
189 *streamPtr++ += (uint16_t) WEBRTC_SPL_RSHIFT_U32( in WebRtcIsacfix_EncLogisticMulti2()
296 W_upper_MSB = (uint16_t) WEBRTC_SPL_RSHIFT_U32(W_upper, 16); in WebRtcIsacfix_DecLogisticMulti2()
Darith_routines_hist.c320 W_upper_MSB = WEBRTC_SPL_RSHIFT_U32(W_upper, 16); in WebRtcIsacfix_DecHistOneStepMulti()
Dentropy_coding.c403 shft = (int16_t)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 15); in GenerateDitherQ7()
438 shft = (int16_t)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 1); /* either 0 or 1 */ in GenerateDitherQ7()
564 PSpec[k>>2] = WEBRTC_SPL_RSHIFT_U32(sum, 2); in WebRtcIsacfix_EncodeSpec()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dcrc.c103 crc_tbl_indx = (WEBRTC_SPL_RSHIFT_U32(crc_state, 24) ^ in WebRtcIsac_GetCrc()
/external/webrtc/webrtc/common_audio/signal_processing/include/
Dsignal_processing_library.h92 #define WEBRTC_SPL_RSHIFT_U32(x, c) ((uint32_t)(x) >> (c)) macro
/external/webrtc/webrtc/common_audio/signal_processing/
Dsignal_processing_unittest.cc70 EXPECT_EQ(8191u, WEBRTC_SPL_RSHIFT_U32(a, 1)); in TEST_F()