OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fs_mult
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
normal.cc
48
const unsigned
fs_mult
= fs_hz_ / 8000;
local
49
assert(
fs_mult
> 0);
50
// fs_shift = log2(
fs_mult
), rounded down.
53
const int fs_shift = 30 - WebRtcSpl_NormW32(
fs_mult
);
79
int energy_length = std::min(static_cast<int>(
fs_mult
* 64),
111
int16_t increment = 64 /
fs_mult
;
130
for (size_t i = 0; i < 8 *
fs_mult
; i++) {
159
memcpy(cng_output, signal,
fs_mult
* 8 * sizeof(int16_t));
166
for (size_t i = 0; i < 8 *
fs_mult
; i++) {
177
int16_t increment = 64 /
fs_mult
;
[
all
...]
expand.cc
49
int
fs_mult
= fs_hz_ / 8000;
local
150
// max_lag_ =
fs_mult
* 120;
151
// expand_lags_[0] =
fs_mult
* 120;
152
// expand_lags_[1] =
fs_mult
* 120;
153
// expand_lags_[2] =
fs_mult
* 120;
179
// <= 31 *
fs_mult
=> go from 1 to 0 in about 8 ms;
180
// (>= 31 .. <= 63) *
fs_mult
=> go from 1 to 0 in about 16 ms;
181
// >= 64 *
fs_mult
=> go from 1 to 0 in about 32 ms.
215
// mute_slope = 0.0010 /
fs_mult
in Q20.
217
static_cast<int16_t>(1049 /
fs_mult
));
324
int
fs_mult
= fs_hz_ \/ 8000;
local
[
all
...]
Completed in 434 milliseconds