OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mean_value
(Results
1 - 6
of
6
) sorted by null
/external/webrtc/src/modules/audio_processing/utility/
delay_estimator.h
112
// Updates the |
mean_value
| recursively with a step size of 2^-|factor|. This
121
// -
mean_value
: Pointer to the mean value.
125
int32_t*
mean_value
);
delay_estimator.c
309
int32_t*
mean_value
) {
310
int32_t diff = new_value - *
mean_value
;
312
// mean_new =
mean_value
+ ((new_value -
mean_value
) >> factor);
318
*
mean_value
+= diff;
delay_estimator_wrapper.c
58
// -
mean_value
: Pointer to the mean value for updating.
62
float*
mean_value
) {
64
*
mean_value
+= (new_value - *
mean_value
) * scale;
/external/webrtc/src/common_audio/vad/
vad_sp.c
169
if (current_median < self->
mean_value
[channel]) {
175
tmp32 = WEBRTC_SPL_MUL_16_16(alpha + 1, self->
mean_value
[channel]);
178
self->
mean_value
[channel] = (int16_t) (tmp32 >> 15);
180
return self->
mean_value
[channel];
vad_core.h
39
WebRtc_Word16
mean_value
[NUM_CHANNELS];
member in struct:VadInstT_
vad_core.c
110
inst->
mean_value
[0] = 1600;
111
inst->
mean_value
[1] = 1600;
112
inst->
mean_value
[2] = 1600;
113
inst->
mean_value
[3] = 1600;
114
inst->
mean_value
[4] = 1600;
115
inst->
mean_value
[5] = 1600;
Completed in 30 milliseconds