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

  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.cc 75 subhistory_.reset(new rtc::scoped_ptr<complex<float>[]>[num_freqs_]());
77 subhistory_[i].reset(new complex<float>[window_size_]());
199 subhistory_[i][history_cursor_ % window_size_] = sub_running_mean_[i];
213 AddToMean(subhistory_[i][j], j + 1, &running_mean_[i]);
243 running_mean_[i] -= subhistory_[i][history_cursor_];
247 subhistory_[i][history_cursor_] = sub_running_mean_[i] * scale;
253 running_mean_[i] += subhistory_[i][history_cursor_];
intelligibility_utils.h 117 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_; member in class:webrtc::intelligibility::VarianceArray

Completed in 452 milliseconds