Searched defs:inRateBitPerSec (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dencode.c90 * - inRateBitPerSec : a total bottleneck in bits/sec.
102 int16_t WebRtcIsac_RateAllocation(int32_t inRateBitPerSec, argument
109 if (inRateBitPerSec < 38000) {
113 *rateLBBitPerSec = (int16_t)((inRateBitPerSec > 32000) ?
114 32000 : inRateBitPerSec);
117 } else if ((inRateBitPerSec >= 38000) && (inRateBitPerSec < 50000)) {
125 idxD = (inRateBitPerSec - 38000) * stepSizeInv;
138 } else if ((inRateBitPerSec >= 50000) && (inRateBitPerSec <
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dencode.c90 * - inRateBitPerSec : a total bottleneck in bits/sec.
102 WebRtc_Word16 WebRtcIsac_RateAllocation(WebRtc_Word32 inRateBitPerSec, argument
109 if (inRateBitPerSec < 38000) {
113 *rateLBBitPerSec = (WebRtc_Word16)((inRateBitPerSec > 32000) ?
114 32000 : inRateBitPerSec);
117 } else if ((inRateBitPerSec >= 38000) && (inRateBitPerSec < 50000)) {
125 idxD = (inRateBitPerSec - 38000) * stepSizeInv;
138 } else if ((inRateBitPerSec >= 50000) && (inRateBitPerSec <
[all...]

Completed in 216 milliseconds