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

  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.cc 67 history_cursor_(0),
166 history_[i][history_cursor_] = data[i];
168 mean = history_[i][history_cursor_];
172 zerofudge(history_[i][(history_cursor_ + j) % window_size_]);
173 sample = history_[i][(history_cursor_ + j) % window_size_];
184 history_cursor_ = (history_cursor_ + 1) % window_size_;
194 size_t blocks = min(window_size_, history_cursor_ + 1);
199 subhistory_[i][history_cursor_ % window_size_] = sub_running_mean_[i];
200 subhistory_sq_[i][history_cursor_ % window_size_] = sub_running_mean_sq_[i]
    [all...]
intelligibility_utils.h 127 size_t history_cursor_; member in class:webrtc::intelligibility::VarianceArray

Completed in 102 milliseconds