HomeSort by relevance Sort by last modified time
    Searched defs:output_frame_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/browser/renderer_host/media/
desktop_capture_device.cc 111 scoped_ptr<webrtc::DesktopFrame> output_frame_; member in class:content::DesktopCaptureDevice::Core
113 // Sub-rectangle of |output_frame_| into which the source will be scaled
213 // |output_frame_| is cleared whenever |output_rect_| changes, so we don't
215 if (!output_frame_) {
216 output_frame_.reset(new webrtc::BasicDesktopFrame(output_size));
217 memset(output_frame_->data(), 0, output_bytes);
219 DCHECK(output_frame_->size().equals(output_size));
223 uint8_t* output_rect_data = output_frame_->data() +
224 output_frame_->stride() * output_rect_.top() +
228 output_rect_data, output_frame_->stride()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoadapter.h 61 // true and set the out frame to output_frame_ if the input frame is adapted
63 // output_frame_ is owned by the VideoAdapter that has the best knowledge on
95 bool black_output_; // Flag to tell if we need to black output_frame_.
96 bool is_black_; // Flag to tell if output_frame_ is currently black.
98 talk_base::scoped_ptr<VideoFrame> output_frame_; member in class:cricket::VideoAdapter

Completed in 140 milliseconds