Home
last modified time | relevance | path

Searched refs:num_bands_ (Results 1 – 7 of 7) 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/opencv3/modules/stitching/src/
Dblenders.cpp223num_bands_ = std::min(actual_num_bands_, static_cast<int>(ceil(std::log(max_len) / std::log(2.0)))… in prepare()
226 dst_roi.width += ((1 << num_bands_) - dst_roi.width % (1 << num_bands_)) % (1 << num_bands_); in prepare()
227 dst_roi.height += ((1 << num_bands_) - dst_roi.height % (1 << num_bands_)) % (1 << num_bands_); in prepare()
231 dst_pyr_laplace_.resize(num_bands_ + 1); in prepare()
234 dst_band_weights_.resize(num_bands_ + 1); in prepare()
238 for (int i = 1; i <= num_bands_; ++i) in prepare()
286 int gap = 3 * (1 << num_bands_); in feed()
297 tl_new.x = dst_roi_.x + (((tl_new.x - dst_roi_.x) >> num_bands_) << num_bands_); in feed()
298 tl_new.y = dst_roi_.y + (((tl_new.y - dst_roi_.y) >> num_bands_) << num_bands_); in feed()
301 width += ((1 << num_bands_) - width % (1 << num_bands_)) % (1 << num_bands_); in feed()
[all …]
/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
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dblenders.hpp135 int actual_num_bands_, num_bands_; member in cv::detail::MultiBandBlender