Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dencode.c102 int16_t WebRtcIsac_RateAllocation(int32_t inRateBitPerSec, in WebRtcIsac_RateAllocation() argument
109 if (inRateBitPerSec < 38000) { in WebRtcIsac_RateAllocation()
113 *rateLBBitPerSec = (int16_t)((inRateBitPerSec > 32000) ? in WebRtcIsac_RateAllocation()
114 32000 : inRateBitPerSec); in WebRtcIsac_RateAllocation()
117 } else if ((inRateBitPerSec >= 38000) && (inRateBitPerSec < 50000)) { in WebRtcIsac_RateAllocation()
125 idxD = (inRateBitPerSec - 38000) * stepSizeInv; in WebRtcIsac_RateAllocation()
138 } else if ((inRateBitPerSec >= 50000) && (inRateBitPerSec <= 56000)) { in WebRtcIsac_RateAllocation()
146 idxD = (inRateBitPerSec - 50000) * stepSizeInv; in WebRtcIsac_RateAllocation()
Dcodec.h79 int16_t WebRtcIsac_RateAllocation(int32_t inRateBitPerSec,