OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mute_slope
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/neteq/
expand.h
77
int
mute_slope
,
118
int
mute_slope
; /* Q20 */
expand.cc
248
//
mute_slope
= 0.0010 / fs_mult in Q20.
249
parameters.
mute_slope
= std::max(parameters.
mute_slope
, 1049 / fs_mult);
253
//
mute_slope
= 0.0020 / fs_mult in Q20.
254
parameters.
mute_slope
= std::max(parameters.
mute_slope
, 2097 / fs_mult);
265
DspHelper::MuteSignal(temp_data, parameters.
mute_slope
, current_lag);
271
(((current_lag * parameters.
mute_slope
) + 8192) >> 6));
287
channel_parameters_[channel_ix].
mute_slope
,
731
parameters.
mute_slope
= (temp_ratio + 1) / 2
903
int
mute_slope
;
local
[
all
...]
dsp_helper.h
117
// the gain is reduced by |
mute_slope
| (Q14). |length| samples are processed.
118
static void MuteSignal(int16_t* signal, int
mute_slope
, size_t length);
dsp_helper.cc
287
void DspHelper::MuteSignal(int16_t* signal, int
mute_slope
, size_t length) {
291
factor -=
mute_slope
;
Completed in 354 milliseconds