OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sample_energy
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/neteq/
background_noise.cc
65
int32_t
sample_energy
= CalculateAutoCorrelation(temp_signal, kVecLen,
local
69
sample_energy
< parameters.energy_update_threshold) ||
76
if (
sample_energy
< parameters.energy_update_threshold) {
78
parameters.energy_update_threshold = std::max(
sample_energy
, 1);
106
// If 20 * residual_energy >=
sample_energy
<< 6, the spectrum is flat
108
if ((residual_energy * 20 >= (
sample_energy
<< 6)) &&
109
(
sample_energy
> 0)) {
115
temp_signal + kVecLen - kMaxLpcOrder,
sample_energy
,
119
// Will only happen if post-decode VAD is disabled and |
sample_energy
| is
122
IncrementEnergyThreshold(channel_ix,
sample_energy
);
[
all
...]
background_noise.h
119
void IncrementEnergyThreshold(size_t channel, int32_t
sample_energy
);
125
int32_t
sample_energy
,
Completed in 1352 milliseconds