OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_ISAC_MD
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
settings.h
122
#define
MIN_ISAC_MD
5 /* Minimum Max Delay in ?? */
bandwidth_estimator.c
573
/* sendMaxDelayAvg = 0.9 * sendMaxDelayAvg + 0.1 *
MIN_ISAC_MD
*/
575
51 * (
MIN_ISAC_MD
<< 9);
701
tempMin = 130560; /*
MIN_ISAC_MD
* 0.1 in Q18 */
796
if (recMaxDelay <
MIN_ISAC_MD
) {
797
recMaxDelay =
MIN_ISAC_MD
;
820
: clamp(bweStr->sendMaxDelayAvg >> 9,
MIN_ISAC_MD
, MAX_ISAC_MD);
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.h
34
#define
MIN_ISAC_MD
5
bandwidth_estimator.c
538
0.1f * (float)
MIN_ISAC_MD
;
592
0.1f * (float)
MIN_ISAC_MD
;
634
bwest_str->rec_max_delay_avg_Q - weight *
MIN_ISAC_MD
) )
640
(float)
MIN_ISAC_MD
;
749
if (rec_max_delay <
MIN_ISAC_MD
)
751
rec_max_delay =
MIN_ISAC_MD
;
775
: clamp(bwest_str->send_max_delay_avg,
MIN_ISAC_MD
, MAX_ISAC_MD);
Completed in 343 milliseconds