Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dencode.c107 double idxD; in WebRtcIsac_RateAllocation() local
125 idxD = (inRateBitPerSec - 38000) * stepSizeInv; in WebRtcIsac_RateAllocation()
126 idx = (idxD >= 6) ? 6 : ((int16_t)idxD); in WebRtcIsac_RateAllocation()
127 idxErr = idxD - idx; in WebRtcIsac_RateAllocation()
146 idxD = (inRateBitPerSec - 50000) * stepSizeInv; in WebRtcIsac_RateAllocation()
147 idx = (idxD >= 5) ? 5 : ((int16_t)idxD); in WebRtcIsac_RateAllocation()
148 idxErr = idxD - idx; in WebRtcIsac_RateAllocation()