/external/webrtc/modules/audio_processing/aec3/ |
D | block_framer.cc | 21 : num_bands_(num_bands), in BlockFramer() 23 buffer_(num_bands_, in BlockFramer() 39 RTC_DCHECK_EQ(num_bands_, block.size()); in InsertBlock() 40 for (size_t band = 0; band < num_bands_; ++band) { in InsertBlock() 57 RTC_DCHECK_EQ(num_bands_, block.size()); in InsertBlockAndExtractSubFrame() 58 RTC_DCHECK_EQ(num_bands_, sub_frame->size()); in InsertBlockAndExtractSubFrame() 59 for (size_t band = 0; band < num_bands_; ++band) { in InsertBlockAndExtractSubFrame()
|
D | frame_blocker.cc | 19 : num_bands_(num_bands), in FrameBlocker() 21 buffer_(num_bands_, std::vector<std::vector<float>>(num_channels)) { in FrameBlocker() 38 RTC_DCHECK_EQ(num_bands_, block->size()); in InsertSubFrameAndExtractBlock() 39 RTC_DCHECK_EQ(num_bands_, sub_frame.size()); in InsertSubFrameAndExtractBlock() 40 for (size_t band = 0; band < num_bands_; ++band) { in InsertSubFrameAndExtractBlock() 72 RTC_DCHECK_EQ(num_bands_, block->size()); in ExtractBlock() 74 for (size_t band = 0; band < num_bands_; ++band) { in ExtractBlock()
|
D | echo_canceller3.cc | 572 const size_t num_bands_; member in webrtc::EchoCanceller3::RenderWriter 588 num_bands_(num_bands), in RenderWriter() 592 num_bands_, in RenderWriter() 604 RTC_DCHECK_EQ(num_bands_, input.num_bands()); in Insert() 608 if (num_bands_ != input.num_bands()) in Insert() 614 CopyBufferIntoFrame(input, num_bands_, num_channels_, in Insert() 645 num_bands_(NumBandsForRate(sample_rate_hz_)), in EchoCanceller3() 648 output_framer_(num_bands_, num_capture_channels_), in EchoCanceller3() 649 capture_blocker_(num_bands_, num_capture_channels_), in EchoCanceller3() 650 render_blocker_(num_bands_, num_render_channels_), in EchoCanceller3() [all …]
|
D | echo_canceller3_unittest.cc | 171 num_bands_(NumBandsForRate(sample_rate_hz_)), in EchoCanceller3Tester() 194 new CaptureTransportVerificationProcessor(num_bands_))); in RunCaptureTransportVerificationTest() 200 PopulateInputFrame(frame_length_, num_bands_, frame_index, in RunCaptureTransportVerificationTest() 208 frame_length_, num_bands_, frame_index, in RunCaptureTransportVerificationTest() 219 new RenderTransportVerificationProcessor(num_bands_))); in RunRenderTransportVerificationTest() 227 PopulateInputFrame(frame_length_, num_bands_, frame_index, in RunRenderTransportVerificationTest() 229 PopulateInputFrame(frame_length_, num_bands_, frame_index, in RunRenderTransportVerificationTest() 310 PopulateInputFrame(frame_length_, num_bands_, frame_index, in RunEchoPathChangeVerificationTest() 398 PopulateInputFrame(frame_length_, num_bands_, frame_index, in RunEchoLeakageVerificationTest() 479 PopulateInputFrame(frame_length_, num_bands_, frame_index, in RunCaptureSaturationVerificationTest() [all …]
|
D | echo_canceller3.h | 48 : num_bands_(num_bands), in Aec3RenderQueueItemVerifier() 53 if (v.size() != num_bands_) { in operator() 70 const size_t num_bands_; 161 const int num_bands_; variable
|
D | block_framer.h | 42 const size_t num_bands_;
|
D | frame_blocker.h | 44 const size_t num_bands_;
|
/external/webrtc/common_audio/ |
D | channel_buffer.h | 53 num_bands_(num_bands), in data_() 55 std::vector<rtc::ArrayView<T>>(num_bands_)), in data_() 57 num_bands_, in data_() 67 for (size_t band = 0; band < num_bands_; ++band) { in data_() 74 bands_[ch * num_bands_ + band] = in data_() 94 RTC_DCHECK_LT(band, num_bands_); 118 return &bands_[channel * num_bands_]; in bands() 148 size_t num_bands() const { return num_bands_; } in num_bands() 171 const size_t num_bands_; variable
|
/external/webrtc/modules/audio_processing/ |
D | splitting_filter.cc | 31 : num_bands_(num_bands), in SplittingFilter() 32 two_bands_states_(num_bands_ == 2 ? num_channels : 0), in SplittingFilter() 33 three_band_filter_banks_(num_bands_ == 3 ? num_channels : 0) { in SplittingFilter() 34 RTC_CHECK(num_bands_ == 2 || num_bands_ == 3); in SplittingFilter() 41 RTC_DCHECK_EQ(num_bands_, bands->num_bands()); in Analysis() 54 RTC_DCHECK_EQ(num_bands_, bands->num_bands()); in Synthesis()
|
D | audio_buffer.cc | 66 num_bands_(NumBandsFromFramesPerChannel(buffer_num_frames_)), in AudioBuffer() 67 num_split_frames_(rtc::CheckedDivExact(buffer_num_frames_, num_bands_)), in AudioBuffer() 94 if (num_bands_ > 1) { in AudioBuffer() 96 buffer_num_frames_, buffer_num_channels_, num_bands_)); in AudioBuffer() 98 buffer_num_channels_, num_bands_, buffer_num_frames_)); in AudioBuffer()
|
D | audio_buffer.h | 68 size_t num_bands() const { return num_bands_; } in num_bands() 164 size_t num_bands_; variable
|
D | splitting_filter.h | 65 const size_t num_bands_; variable
|
/external/webrtc/modules/audio_processing/ns/ |
D | noise_suppressor.cc | 258 : num_bands_(NumBandsForRate(sample_rate_hz)), in NoiseSuppressor() 268 std::make_unique<ChannelState>(suppression_params_, num_bands_); in NoiseSuppressor() 439 if (num_bands_ > 1) { in Process() 511 if (num_bands_ > 1) { in Process() 520 for (size_t b = 1; b < num_bands_; ++b) { in Process() 539 for (size_t b = 0; b < num_bands_; ++b) { in Process()
|
D | noise_suppressor.h | 45 const size_t num_bands_;
|