OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_ISAC_BW
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
settings.h
120
#define
MIN_ISAC_BW
10000 /* Minimum bandwidth in bits per sec */
bandwidth_estimator.c
116
* (1 / (
MIN_ISAC_BW
+ INIT_HDR_RATE) in Q30
527
if (bweStr->recBw < (int32_t)
MIN_ISAC_BW
) {
528
bweStr->recBw = (int32_t)
MIN_ISAC_BW
;
779
if (recBw <
MIN_ISAC_BW
) {
780
recBw =
MIN_ISAC_BW
;
814
: clamp(bweStr->sendBwAvg >> 7,
MIN_ISAC_BW
, MAX_ISAC_BW);
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.h
26
#define
MIN_ISAC_BW
10000
bandwidth_estimator.c
442
if (bwest_str->rec_bw_inv > 1.0f / ((float)
MIN_ISAC_BW
+
445
bwest_str->rec_bw_inv = 1.0f / ((float)
MIN_ISAC_BW
+
483
if (bwest_str->rec_bw < (int32_t)
MIN_ISAC_BW
)
485
bwest_str->rec_bw = (int32_t)
MIN_ISAC_BW
;
727
if (rec_bw <
MIN_ISAC_BW
)
729
rec_bw =
MIN_ISAC_BW
;
769
: clamp(bwest_str->send_bw_avg,
MIN_ISAC_BW
, MAX_ISAC_BW);
Completed in 907 milliseconds