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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
time_stretch.h 80 static const int kCorrelationLen = 50;
81 static const int kLogCorrelationLen = 6; // >= log2(kCorrelationLen).
84 static const int kDownsampledLen = kCorrelationLen + kMaxLag;
96 int16_t auto_correlation_[kCorrelationLen + 1];
time_stretch.cc 65 DspHelper::PeakDetection(auto_correlation_, kCorrelationLen, kNumPeaks,
69 assert(peak_index <= (2 * kCorrelationLen - 1) * fs_mult_);
78 assert(peak_index <= 20 * fs_mult_ + (2 * kCorrelationLen - 1) * fs_mult_);
167 int32_t auto_corr[kCorrelationLen];
170 kCorrelationLen, kMaxLag - kMinLag, scaling, -1);
173 int32_t max_corr = WebRtcSpl_MaxAbsValueW32(auto_corr, kCorrelationLen);
175 WebRtcSpl_VectorBitShiftW32ToW16(auto_correlation_, kCorrelationLen,

Completed in 221 milliseconds