OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sendMaxDelayAvg
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c
106
bweStr->
sendMaxDelayAvg
= (int32_t) 5120; /* 10 in Q9 */
565
/*
sendMaxDelayAvg
= 0.9 *
sendMaxDelayAvg
+ 0.1 * MAX_ISAC_MD */
566
bweStr->
sendMaxDelayAvg
= WEBRTC_SPL_MUL(461, bweStr->
sendMaxDelayAvg
) +
568
bweStr->
sendMaxDelayAvg
>>= 9;
573
/*
sendMaxDelayAvg
= 0.9 *
sendMaxDelayAvg
+ 0.1 * MIN_ISAC_MD */
574
bweStr->
sendMaxDelayAvg
= WEBRTC_SPL_MUL(461, bweStr->
sendMaxDelayAvg
)
[
all
...]
structs.h
224
int32_t
sendMaxDelayAvg
; /* The estimated mean absolute jitter value, as seen on the other siee (in ms) */
Completed in 48 milliseconds