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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
time_stretch.cc 28 // Pre-calculate common multiplication with |fs_mult_|.
29 int fs_mult_120 = fs_mult_ * 120; // Corresponds to 15 ms.
66 fs_mult_, &peak_index, &peak_value);
69 assert(peak_index <= (2 * kCorrelationLen - 1) * fs_mult_);
74 // multiplication by fs_mult_ * 2.
75 peak_index += kMinLag * fs_mult_ * 2;
77 assert(peak_index >= 20 * fs_mult_);
78 assert(peak_index <= 20 * fs_mult_ + (2 * kCorrelationLen - 1) * fs_mult_);
accelerate.cc 25 (2 * k15ms - 1) * fs_mult_) {
51 // Pre-calculate common multiplication with |fs_mult_|.
53 size_t fs_mult_120 = fs_mult_ * 120;
merge.h 39 fs_mult_(fs_hz_ / 8000),
98 const int fs_mult_; // fs_hz_ / 8000. member in class:webrtc::Merge
time_stretch.h 41 fs_mult_(sample_rate_hz / 8000),
88 const int fs_mult_; // Sample rate multiplier = sample_rate_hz_ / 8000. member in class:webrtc::TimeStretch
merge.cc 89 kMaxCorrelationLength * fs_mult_,
96 int increment = 4194 / fs_mult_;
178 const int required_length = (120 + 80 + 2) * fs_mult_;
195 const int mod_input_length = std::min(64 * fs_mult_, input_length);
200 // |log_fs_mult| is log2(fs_mult_), but is not exact for 48000 Hz.
201 int log_fs_mult = 30 - WebRtcSpl_NormW32(fs_mult_);
299 max_corr_length, expand_->max_lag() / (fs_mult_ * 2) + 1);
331 // Downscale starting index to 4kHz domain. (fs_mult_ * 2 = fs_hz_ / 4000.)
332 int start_index_downsamp = start_index / (fs_mult_ * 2);
344 fs_mult_, &best_correlation_index
    [all...]
preemptive_expand.cc 30 input_length / num_channels_ < (2 * k15ms - 1) * fs_mult_ ||
60 // Pre-calculate common multiplication with |fs_mult_|.
62 int fs_mult_120 = fs_mult_ * 120;
decision_logic.cc 101 fs_mult_ = fs_hz / 8000;
158 const int elapsed_time_ms = output_size_samples_ / (8 * fs_mult_);
decision_logic.h 151 int fs_mult_; member in class:webrtc::DecisionLogic
decision_logic_normal.cc 205 // fs_mult_ * 8 = fs / 1000.)
208 cur_size_samples > kAllowMergeWithoutExpandMs * fs_mult_ * 8)) {
neteq_impl.cc 104 fs_mult_ = fs / 8000;
105 output_size_samples_ = kOutputSizeMs * 8 * fs_mult_;
    [all...]
neteq_impl.h 368 int fs_mult_ GUARDED_BY(crit_sect_);

Completed in 234 milliseconds