Home
last modified time | relevance | path

Searched refs:num_bands_ (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/modules/audio_processing/aec3/
Dblock_framer.cc21 : 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()
Dframe_blocker.cc19 : 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()
Decho_canceller3.cc572 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 …]
Decho_canceller3_unittest.cc171 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 …]
Decho_canceller3.h48 : 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
Dblock_framer.h42 const size_t num_bands_;
Dframe_blocker.h44 const size_t num_bands_;
/external/webrtc/common_audio/
Dchannel_buffer.h53 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/
Dsplitting_filter.cc31 : 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()
Daudio_buffer.cc66 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()
Daudio_buffer.h68 size_t num_bands() const { return num_bands_; } in num_bands()
164 size_t num_bands_; variable
Dsplitting_filter.h65 const size_t num_bands_; variable
/external/webrtc/modules/audio_processing/ns/
Dnoise_suppressor.cc258 : 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()
Dnoise_suppressor.h45 const size_t num_bands_;