Home
last modified time | relevance | path

Searched refs:subhistory_sq_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/intelligibility/
Dintelligibility_utils.cc79 subhistory_sq_.reset(new rtc::scoped_ptr<complex<float>[]>[num_freqs_]()); in VarianceArray()
81 subhistory_sq_[i].reset(new complex<float>[window_size_]()); in VarianceArray()
200 subhistory_sq_[i][history_cursor_ % window_size_] = sub_running_mean_sq_[i]; in BlockedStep()
214 AddToMean(subhistory_sq_[i][j], j + 1, &running_mean_sq_[i]); in BlockedStep()
244 running_mean_sq_[i] -= subhistory_sq_[i][history_cursor_]; in BlockBasedMovingAverage()
248 subhistory_sq_[i][history_cursor_] = sub_running_mean_sq_[i] * scale; in BlockBasedMovingAverage()
254 running_mean_sq_[i] += subhistory_sq_[i][history_cursor_]; in BlockBasedMovingAverage()
Dintelligibility_utils.h118 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_sq_; variable