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

  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer.cc 219 time_smooth_mask_[i] = 1.f;
494 // Smooth new_mask_ into time_smooth_mask_.
497 time_smooth_mask_[i] = kMaskTimeSmoothAlpha * new_mask_[i] +
498 (1 - kMaskTimeSmoothAlpha) * time_smooth_mask_[i];
502 // Copy time_smooth_mask_ to final_mask_ and smooth over frequency.
520 std::copy(time_smooth_mask_, time_smooth_mask_ + kNumFreqBins, final_mask_);
531 // Apply low frequency correction to time_smooth_mask_.
535 std::fill(time_smooth_mask_, time_smooth_mask_ + low_mean_start_bin_
    [all...]
nonlinear_beamformer.h 151 float time_smooth_mask_[kNumFreqBins]; member in class:webrtc::NonlinearBeamformer

Completed in 1452 milliseconds