Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/
Dsplitting_filter.cc22 : num_bands_(num_bands) { in SplittingFilter()
23 RTC_CHECK(num_bands_ == 2 || num_bands_ == 3); in SplittingFilter()
24 if (num_bands_ == 2) { in SplittingFilter()
26 } else if (num_bands_ == 3) { in SplittingFilter()
35 RTC_DCHECK_EQ(num_bands_, bands->num_bands()); in Analysis()
48 RTC_DCHECK_EQ(num_bands_, bands->num_bands()); in Synthesis()
Daudio_buffer.cc57 num_bands_(NumBandsFromSamplesPerChannel(proc_num_frames_)), in AudioBuffer()
58 num_split_frames_(rtc::CheckedDivExact(proc_num_frames_, num_bands_)), in AudioBuffer()
93 if (num_bands_ > 1) { in AudioBuffer()
96 num_bands_)); in AudioBuffer()
98 num_bands_, in AudioBuffer()
366 return num_bands_; in num_bands()
Dsplitting_filter.h61 const size_t num_bands_; variable
Daudio_buffer.h142 size_t num_bands_; variable
/external/webrtc/webrtc/common_audio/
Dchannel_buffer.h51 num_bands_(num_bands) { in data_()
53 for (size_t j = 0; j < num_bands_; ++j) { in data_()
56 bands_[i * num_bands_ + j] = channels_[j * num_channels_ + i]; in data_()
78 RTC_DCHECK_LT(band, num_bands_); in channels()
96 return &bands_[channel * num_bands_]; in bands()
119 size_t num_bands() const { return num_bands_; } in num_bands()
134 const size_t num_bands_; variable