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/src/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c
104
bweStr->
sendMaxDelayAvg
= (WebRtc_Word32) 5120; /* 10 in Q9 */
559
/*
sendMaxDelayAvg
= 0.9 *
sendMaxDelayAvg
+ 0.1 * MAX_ISAC_MD */
560
bweStr->
sendMaxDelayAvg
= WEBRTC_SPL_MUL(461, bweStr->
sendMaxDelayAvg
) +
562
bweStr->
sendMaxDelayAvg
= WEBRTC_SPL_RSHIFT_W32(bweStr->
sendMaxDelayAvg
, 9);
567
/*
sendMaxDelayAvg
= 0.9 *
sendMaxDelayAvg
+ 0.1 * MIN_ISAC_MD */
568
bweStr->
sendMaxDelayAvg
= WEBRTC_SPL_MUL(461, bweStr->sendMaxDelayAvg)
[
all
...]
structs.h
222
WebRtc_Word32
sendMaxDelayAvg
; /* The estimated mean absolute jitter value, as seen on the other siee (in ms) */
Completed in 41 milliseconds