OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:history_size
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/utility/
delay_estimator.h
40
int
history_size
;
member in struct:__anon21365
107
// -
history_size
: > 0 - Far-end history size.
delay_estimator.c
95
int
history_size
= max_delay + lookahead;
local
106
if (
history_size
< 2) {
122
self->
history_size
=
history_size
;
126
self->mean_bit_counts = malloc(
history_size
* sizeof(int32_t));
132
self->bit_counts = malloc(
history_size
* sizeof(int32_t));
139
self->binary_far_history = malloc(
history_size
* sizeof(uint32_t));
152
self->far_bit_counts = malloc(
history_size
* sizeof(int));
166
memset(handle->bit_counts, 0, sizeof(int32_t) * handle->
history_size
);
168
sizeof(uint32_t) * handle->
history_size
);
[
all
...]
Completed in 652 milliseconds