HomeSort by relevance Sort by last modified time
    Searched defs:inLevel (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
digital_agc.c 69 int32_t inLevel, limiterLvl;
141 // inLevel = fix((-constLog10_2*(compRatio-1)*(1-i)+fix(compRatio/2))/compRatio)
144 inLevel = WebRtcSpl_DivW32W16(tmp32, kCompRatio); // Q14
146 // Calculate diffGain-inLevel, to map using the genFuncTable
147 inLevel = WEBRTC_SPL_LSHIFT_W32((int32_t)diffGain, 14) - inLevel; // Q14
149 // Make calculations on abs(inLevel) and compensate for the sign afterwards.
150 absInLevel = (uint32_t)WEBRTC_SPL_ABS_W32(inLevel); // Q14
161 if (inLevel < 0)
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 69 WebRtc_Word32 inLevel, limiterLvl;
141 // inLevel = fix((-constLog10_2*(compRatio-1)*(1-i)+fix(compRatio/2))/compRatio)
144 inLevel = WebRtcSpl_DivW32W16(tmp32, kCompRatio); // Q14
146 // Calculate diffGain-inLevel, to map using the genFuncTable
147 inLevel = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)diffGain, 14) - inLevel; // Q14
149 // Make calculations on abs(inLevel) and compensate for the sign afterwards.
150 absInLevel = (WebRtc_UWord32)WEBRTC_SPL_ABS_W32(inLevel); // Q14
161 if (inLevel < 0)

Completed in 95 milliseconds