HomeSort by relevance Sort by last modified time
    Searched refs:fs_mult (Results 1 - 4 of 4) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/
dsp_helper.cc 103 size_t num_peaks, int fs_mult,
125 ParabolicFit(&data[peak_index[i] - 1], fs_mult, &peak_index[i],
130 ParabolicFit(&data[peak_index[i] - 1], fs_mult, &peak_index[i],
135 peak_index[i] = (peak_index[i] * 2 + 1) * fs_mult;
139 peak_index[i] = peak_index[i] * 2 * fs_mult;
150 void DspHelper::ParabolicFit(int16_t* signal_points, int fs_mult,
153 if (fs_mult == 1) {
157 } else if (fs_mult == 2) {
163 } else if (fs_mult == 4) {
196 int16_t stp = kParabolaCoefficients[fit_index[fs_mult]][0
    [all...]
normal.cc 48 const int 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);
80 std::min(static_cast<size_t>(fs_mult * 64), length_per_channel);
114 int increment = 64 / fs_mult;
134 for (size_t i = 0; i < static_cast<size_t>(8 * fs_mult); i++) {
163 memcpy(cng_output, signal, fs_mult * 8 * sizeof(int16_t));
170 for (size_t i = 0; i < static_cast<size_t>(8 * fs_mult); i++) {
181 int increment = 64 / fs_mult;
    [all...]
dsp_helper.h 77 // having length |data_length| and sample rate multiplier |fs_mult|. The peak
82 size_t num_peaks, int fs_mult,
90 // indicated by the sample rate multiplier |fs_mult|.
91 static void ParabolicFit(int16_t* signal_points, int fs_mult,
expand.cc 80 int fs_mult = fs_hz_ / 8000; local
182 // max_lag_ = fs_mult * 120;
183 // expand_lags_[0] = fs_mult * 120;
184 // expand_lags_[1] = fs_mult * 120;
185 // expand_lags_[2] = fs_mult * 120;
211 // <= 31 * fs_mult => go from 1 to 0 in about 8 ms;
212 // (>= 31 .. <= 63) * fs_mult => go from 1 to 0 in about 16 ms;
213 // >= 64 * fs_mult => go from 1 to 0 in about 32 ms.
248 // mute_slope = 0.0010 / fs_mult in Q20.
249 parameters.mute_slope = std::max(parameters.mute_slope, 1049 / fs_mult);
365 int fs_mult = fs_hz_ \/ 8000; local
    [all...]

Completed in 77 milliseconds