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

  /external/webrtc/webrtc/modules/desktop_capture/x11/
x_server_pixel_buffer.h 41 const DesktopSize& window_size() { return window_size_; }
74 DesktopSize window_size_; member in class:webrtc::XServerPixelBuffer
x_server_pixel_buffer.cc 109 window_size_ = DesktopSize(attributes.width, attributes.height);
133 0, shm_segment_info_, window_size_.width(),
134 window_size_.height());
185 window_size_.width(),
186 window_size_.height(), depth);
238 assert(rect.right() <= window_size_.width());
239 assert(rect.bottom() <= window_size_.height());
  /external/opencv3/modules/viz/src/
types.cpp 105 window_size_ = window_size;
143 window_size_ = window_size;
160 window_size_ = window_size;
168 float scalex = static_cast<float>(window_size.width) / static_cast<float>(window_size_.width);
169 float scaley = static_cast<float>(window_size.height) / static_cast<float>(window_size_.height);
177 window_size_ = window_size;
184 double right = clip_[0] * (window_size_.width - principal_point_[0]) / focal_[0];
185 double bottom = -clip_[0] * (window_size_.height - principal_point_[1]) / focal_[1];
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.cc 65 window_size_(window_size),
73 history_[i].reset(new complex<float>[window_size_]());
77 subhistory_[i].reset(new complex<float>[window_size_]());
81 subhistory_sq_[i].reset(new complex<float>[window_size_]());
160 size_t num = min(count_ + 1, window_size_);
172 zerofudge(history_[i][(history_cursor_ + j) % window_size_]);
173 sample = history_[i][(history_cursor_ + j) % window_size_];
184 history_cursor_ = (history_cursor_ + 1) % window_size_;
194 size_t blocks = min(window_size_, history_cursor_ + 1);
199 subhistory_[i][history_cursor_ % window_size_] = sub_running_mean_[i]
    [all...]
intelligibility_enhancer.cc 74 window_size_(static_cast<size_t>(1 << RealFourier::FftOrder(freqs_))),
101 kbd_window_(new float[window_size_]),
120 WindowGenerator::KaiserBesselDerived(kKbdAlpha, window_size_,
124 kbd_window_.get(), window_size_, window_size_ / 2, &render_callback_));
127 kbd_window_.get(), window_size_, window_size_ / 2, &capture_callback_));
intelligibility_enhancer.h 142 const size_t window_size_; // Window size in samples; also the block size. member in class:webrtc::IntelligibilityEnhancer
intelligibility_utils.h 125 const size_t window_size_; member in class:webrtc::intelligibility::VarianceArray
  /external/opencv3/modules/viz/include/opencv2/viz/
types.hpp 178 const Size & getWindowSize() const { return window_size_; }
205 Size window_size_; member in class:cv::viz::Camera

Completed in 64 milliseconds