OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BottleNeck
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.h
105
const int16_t
BottleNeck
, /* bottle neck rate; excl headers (bps) */
114
const int16_t
BottleNeck
); /* bottle neck rate; excl headers (bps) */
bandwidth_estimator.c
837
const int16_t
BottleNeck
, /* bottle neck rate; excl headers (bps) */
859
/* max bps derived from
BottleNeck
and DelayBuildUp values */
861
MinRate = WEBRTC_SPL_MUL(512 + WEBRTC_SPL_MUL(SAMPLES_PER_MSEC, WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(DelayBuildUp, inv_Q12), 3)),
BottleNeck
);
866
MinRate = WEBRTC_SPL_MUL(512 + WEBRTC_SPL_MUL(SAMPLES_PER_MSEC, WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(DelayBuildUp - State->StillBuffered, inv_Q12), 3)),
BottleNeck
);
871
MinRate = WEBRTC_SPL_MUL((512 - WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(den, inv_Q12), 3)),
BottleNeck
);
873
//if (MinRate < 1.04 *
BottleNeck
)
874
// MinRate = 1.04 *
BottleNeck
;
876
if (MinRate < WEBRTC_SPL_MUL(532,
BottleNeck
)) {
877
MinRate += WEBRTC_SPL_MUL(22,
BottleNeck
);
899
if ((StreamSize * (int32_t)FS8) / FrameSamples > (517 *
BottleNeck
) >> 9)
[
all
...]
encode.c
108
ISACenc_obj->
BottleNeck
= WebRtcIsacfix_GetUplinkBandwidth(bw_estimatordata);
112
ISACenc_obj->new_framelength = WebRtcIsacfix_GetNewFrameLength(ISACenc_obj->
BottleNeck
,
116
// multiply the
bottleneck
by 0.88 before computing SNR, 0.88 is tuned by experimenting on TIMIT
118
ISACenc_obj->s2nr = WebRtcIsacfix_GetSnr((int16_t)WEBRTC_SPL_MUL_16_16_RSFT(ISACenc_obj->
BottleNeck
, 901, 10),
294
// of 120 (32kbps
bottleneck
), number of frames needed a rate-reduction was 58403
413
ISACenc_obj->new_framelength = WebRtcIsacfix_GetNewFrameLength(ISACenc_obj->
BottleNeck
,
428
ISACenc_obj->current_framesamples, ISACenc_obj->
BottleNeck
, ISACenc_obj->MaxDelay);
483
ISACenc_obj->current_framesamples, ISACenc_obj->
BottleNeck
);
structs.h
319
int16_t
BottleNeck
;
isacfix.c
287
ISAC_inst->ISACenc_obj.
BottleNeck
= 32000; /* default for I-mode */
[
all
...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.h
45
// Initial
Bottleneck
Estimate, in bits/sec, for
139
const double
BottleNeck
, /* bottle neck rate; excl headers (bps) */
140
const double DelayBuildUp, /* max delay from
bottleneck
buffering (ms) */
151
const double
BottleNeck
); /* bottle neck rate; excl headers (bps) */
bandwidth_estimator.c
793
const double
BottleNeck
, /* bottle neck rate; excl headers (bps) */
794
const double DelayBuildUp, /* max delay from
bottleneck
buffering (ms) */
830
/* max bps derived from
BottleNeck
and DelayBuildUp values */
832
(double)(BURST_LEN * FrameSamples)) *
BottleNeck
;
839
State->StillBuffered) / (double)FrameSamples) *
BottleNeck
;
840
if (MinRate < 1.04 *
BottleNeck
)
842
MinRate = 1.04 *
BottleNeck
;
860
if (StreamSize * 8.0 * FS / FrameSamples > 1.01 *
BottleNeck
) {
895
TransmissionTime = StreamSize * 8.0 * 1000.0 /
BottleNeck
; /* ms */
914
const double
BottleNeck
) /* bottle neck rate; excl headers (bps) *
[
all
...]
Completed in 86 milliseconds