/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
|
/external/opencv3/modules/stitching/src/ |
blenders.cpp | 223 num_bands_ = std::min(actual_num_bands_, static_cast<int>(ceil(std::log(max_len) / std::log(2.0)))); 225 // Add border to the final image, to ensure sizes are divided by (1 << num_bands_) 226 dst_roi.width += ((1 << num_bands_) - dst_roi.width % (1 << num_bands_)) % (1 << num_bands_); 227 dst_roi.height += ((1 << num_bands_) - dst_roi.height % (1 << num_bands_)) % (1 << num_bands_); 231 dst_pyr_laplace_.resize(num_bands_ + 1); 234 dst_band_weights_.resize(num_bands_ + 1) [all...] |
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
blenders.hpp | 135 int actual_num_bands_, num_bands_; member in class:cv::detail::MultiBandBlender
|