OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_ISAC_MD
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
settings.h
123
#define
MAX_ISAC_MD
25 /* Maxmum Max Delay in ?? */
bandwidth_estimator.c
565
/* sendMaxDelayAvg = 0.9 * sendMaxDelayAvg + 0.1 *
MAX_ISAC_MD
*/
567
51 * (
MAX_ISAC_MD
<< 9);
700
tempMax = 652800; /*
MAX_ISAC_MD
* 0.1 in Q18 */
798
} else if (recMaxDelay >
MAX_ISAC_MD
) {
799
recMaxDelay =
MAX_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
35
#define
MAX_ISAC_MD
25
bandwidth_estimator.c
532
0.1f * (float)
MAX_ISAC_MD
;
586
0.1f * (float)
MAX_ISAC_MD
;
633
MAX_ISAC_MD
- MaxDelay) > (MaxDelay - (1.f-weight) *
648
(float)
MAX_ISAC_MD
;
753
else if (rec_max_delay >
MAX_ISAC_MD
)
755
rec_max_delay =
MAX_ISAC_MD
;
775
: clamp(bwest_str->send_max_delay_avg, MIN_ISAC_MD,
MAX_ISAC_MD
);
Completed in 388 milliseconds