/external/webrtc/modules/audio_processing/aec3/ |
D | echo_remover.cc | 152 const size_t num_capture_channels_; member in webrtc::__anon2c29776e0111::EchoRemoverImpl 195 num_capture_channels_(num_capture_channels), in EchoRemoverImpl() 200 num_capture_channels_, in EchoRemoverImpl() 207 cng_(config_, optimization_, num_capture_channels_), in EchoRemoverImpl() 210 num_capture_channels_), in EchoRemoverImpl() 213 aec_state_(config_, num_capture_channels_), in EchoRemoverImpl() 214 e_old_(num_capture_channels_, {0.f}), in EchoRemoverImpl() 215 y_old_(num_capture_channels_, {0.f}), 216 e_heap_(NumChannelsOnHeap(num_capture_channels_), {0.f}), 217 Y2_heap_(NumChannelsOnHeap(num_capture_channels_)), [all …]
|
D | comfort_noise_generator.cc | 107 num_capture_channels_(num_capture_channels), in ComfortNoiseGenerator() 111 num_capture_channels_)), in ComfortNoiseGenerator() 112 Y2_smoothed_(num_capture_channels_), in ComfortNoiseGenerator() 113 N2_(num_capture_channels_) { in ComfortNoiseGenerator() 114 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in ComfortNoiseGenerator() 133 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Compute() 141 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Compute() 155 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Compute() 165 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Compute() 180 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Compute()
|
D | subtractor.cc | 74 num_capture_channels_(num_capture_channels), in Subtractor() 76 refined_filters_(num_capture_channels_), in Subtractor() 77 coarse_filter_(num_capture_channels_), in Subtractor() 78 refined_gains_(num_capture_channels_), in Subtractor() 79 coarse_gains_(num_capture_channels_), in Subtractor() 80 filter_misadjustment_estimators_(num_capture_channels_), in Subtractor() 81 poor_coarse_filter_counters_(num_capture_channels_, 0), in Subtractor() 82 coarse_filter_reset_hangover_(num_capture_channels_, 0), in Subtractor() 84 num_capture_channels_, in Subtractor() 90 num_capture_channels_, in Subtractor() [all …]
|
D | residual_echo_estimator_unittest.cc | 38 num_capture_channels_(num_capture_channels), in ResidualEchoEstimatorTest() 41 aec_state_(config_, num_capture_channels_), in ResidualEchoEstimatorTest() 45 E2_refined_(num_capture_channels_), in ResidualEchoEstimatorTest() 46 S2_linear_(num_capture_channels_), in ResidualEchoEstimatorTest() 47 Y2_(num_capture_channels_), in ResidualEchoEstimatorTest() 48 R2_(num_capture_channels_), in ResidualEchoEstimatorTest() 49 R2_unbounded_(num_capture_channels_), in ResidualEchoEstimatorTest() 51 H2_(num_capture_channels_, in ResidualEchoEstimatorTest() 53 h_(num_capture_channels_, in ResidualEchoEstimatorTest() 58 output_(num_capture_channels_) { in ResidualEchoEstimatorTest() [all …]
|
D | aec_state.cc | 119 num_capture_channels_(num_capture_channels), in AecState() 126 delay_state_(config_, num_capture_channels_), in AecState() 128 filter_quality_state_(config_, num_capture_channels_), in AecState() 130 erle_estimator_(2 * kNumBlocksPerSecond, config_, num_capture_channels_), in AecState() 131 filter_analyzer_(config_, num_capture_channels_), in AecState() 134 reverb_model_estimator_(config_, num_capture_channels_), in AecState() 135 subtractor_output_analyzer_(num_capture_channels_) {} in AecState() 181 RTC_DCHECK_EQ(num_capture_channels_, Y2.size()); in Update() 182 RTC_DCHECK_EQ(num_capture_channels_, subtractor_output.size()); in Update() 183 RTC_DCHECK_EQ(num_capture_channels_, in Update() [all …]
|
D | dominant_nearend_detector.cc | 25 num_capture_channels_(num_capture_channels), in DominantNearendDetector() 26 trigger_counters_(num_capture_channels_), in DominantNearendDetector() 27 hold_counters_(num_capture_channels_) {} in DominantNearendDetector() 44 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Update()
|
D | subband_nearend_detector.cc | 20 num_capture_channels_(num_capture_channels), in SubbandNearendDetector() 21 nearend_smoothers_(num_capture_channels_, in SubbandNearendDetector() 38 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in Update()
|
D | suppression_gain.cc | 178 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in UpperBandsGain() 281 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in LowerBandGain() 331 num_capture_channels_(num_capture_channels), in SuppressionGain() 334 last_nearend_(num_capture_channels_, {0}), in SuppressionGain() 335 last_echo_(num_capture_channels_, {0}), 337 num_capture_channels_, 352 config_.suppressor.subband_nearend_detection, num_capture_channels_); 355 config_.suppressor.dominant_nearend_detection, num_capture_channels_);
|
D | suppression_filter.h | 28 size_t num_capture_channels_); 44 const size_t num_capture_channels_; variable
|
D | echo_canceller3.cc | 731 num_capture_channels_(num_capture_channels), in EchoCanceller3() 744 output_framer_(num_bands_, num_capture_channels_), in EchoCanceller3() 745 capture_blocker_(num_bands_, num_capture_channels_), in EchoCanceller3() 762 capture_block_(num_bands_, num_capture_channels_), in EchoCanceller3() 765 std::vector<rtc::ArrayView<float>>(num_capture_channels_)) { in EchoCanceller3() 770 num_capture_channels_, num_bands_, AudioBuffer::kSplitBandSize, in EchoCanceller3() 783 new BlockFramer(/*num_bands=*/1, num_capture_channels_)); in EchoCanceller3() 785 std::make_unique<Block>(/*num_bands=*/1, num_capture_channels_), in EchoCanceller3() 788 1, std::vector<rtc::ArrayView<float>>(num_capture_channels_)); in EchoCanceller3() 795 << ", num capture channels: " << num_capture_channels_; in EchoCanceller3() [all …]
|
D | suppression_filter.cc | 68 num_capture_channels_(num_capture_channels), in SuppressionFilter() 72 num_capture_channels_)) { in SuppressionFilter() 103 for (size_t ch = 0; ch < num_capture_channels_; ++ch) { in ApplyGain()
|
D | subband_nearend_detector.h | 43 const size_t num_capture_channels_; variable
|
D | dominant_nearend_detector.h | 47 const size_t num_capture_channels_; variable
|
D | comfort_noise_generator.h | 66 const size_t num_capture_channels_; variable
|
D | subtractor.h | 132 const size_t num_capture_channels_; variable
|
D | suppression_gain.h | 126 const size_t num_capture_channels_; variable
|
D | echo_canceller3.h | 196 const size_t num_capture_channels_; variable
|
D | aec_state.h | 161 const size_t num_capture_channels_; variable
|
/external/webrtc/modules/audio_processing/agc2/ |
D | input_volume_controller.cc | 374 : num_capture_channels_(num_capture_channels), in InputVolumeController() 438 audio, num_capture_channels_, static_cast<int>(samples_per_channel)); in AnalyzePreProcess() 450 ComputeClippedRatio(audio, num_capture_channels_, samples_per_channel); in AnalyzePreProcess() 469 for (int channel = 0; channel < num_capture_channels_; ++channel) { in AnalyzePreProcess()
|
D | input_volume_controller.h | 141 const int num_capture_channels_; variable
|
/external/webrtc/modules/audio_processing/agc/ |
D | agc_manager_direct.h | 99 int num_channels() const { return num_capture_channels_; } in num_channels() 156 const int num_capture_channels_; variable
|
D | agc_manager_direct.cc | 466 num_capture_channels_(num_capture_channels), in AgcManagerDirect() 553 audio, num_capture_channels_, static_cast<int>(samples_per_channel)); in AnalyzePreProcess() 567 ComputeClippedRatio(audio, num_capture_channels_, samples_per_channel); in AnalyzePreProcess() 586 for (int channel = 0; channel < num_capture_channels_; ++channel) { in AnalyzePreProcess()
|