Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/intelligibility/
Dintelligibility_utils.cc75 subhistory_.reset(new rtc::scoped_ptr<complex<float>[]>[num_freqs_]()); in VarianceArray()
77 subhistory_[i].reset(new complex<float>[window_size_]()); in VarianceArray()
199 subhistory_[i][history_cursor_ % window_size_] = sub_running_mean_[i]; in BlockedStep()
213 AddToMean(subhistory_[i][j], j + 1, &running_mean_[i]); in BlockedStep()
243 running_mean_[i] -= subhistory_[i][history_cursor_]; in BlockBasedMovingAverage()
247 subhistory_[i][history_cursor_] = sub_running_mean_[i] * scale; in BlockBasedMovingAverage()
253 running_mean_[i] += subhistory_[i][history_cursor_]; in BlockBasedMovingAverage()
Dintelligibility_utils.h117 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_; variable