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

  /external/webrtc/webrtc/common_audio/
channel_buffer.h 51 num_bands_(num_bands) {
53 for (size_t j = 0; j < num_bands_; ++j) {
56 bands_[i * num_bands_ + j] = channels_[j * num_channels_ + i];
74 // 0 <= band < |num_bands_|
78 RTC_DCHECK_LT(band, num_bands_);
91 // 0 <= band < |num_bands_|
96 return &bands_[channel * num_bands_];
119 size_t num_bands() const { return num_bands_; }
134 const size_t num_bands_; member in class:webrtc::ChannelBuffer
  /external/webrtc/webrtc/modules/audio_processing/
splitting_filter.cc 22 : num_bands_(num_bands) {
23 RTC_CHECK(num_bands_ == 2 || num_bands_ == 3);
24 if (num_bands_ == 2) {
26 } else if (num_bands_ == 3) {
35 RTC_DCHECK_EQ(num_bands_, bands->num_bands());
48 RTC_DCHECK_EQ(num_bands_, bands->num_bands());
splitting_filter.h 61 const size_t num_bands_; member in class:webrtc::SplittingFilter
audio_buffer.cc 57 num_bands_(NumBandsFromSamplesPerChannel(proc_num_frames_)),
58 num_split_frames_(rtc::CheckedDivExact(proc_num_frames_, num_bands_)),
93 if (num_bands_ > 1) {
96 num_bands_));
98 num_bands_,
366 return num_bands_;
audio_buffer.h 66 // 0 <= band < |num_bands_|
77 // 0 <= band < |num_bands_|
142 size_t num_bands_; member in class:webrtc::AudioBuffer

Completed in 1744 milliseconds