Searched refs:output_frame_ (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/content/browser/media/capture/
H A Ddesktop_capture_device.cc107 scoped_ptr<webrtc::DesktopFrame> output_frame_; member in class:content::DesktopCaptureDevice::Core
109 // Sub-rectangle of |output_frame_| into which the source will be scaled
149 output_frame_.reset();
287 // |output_frame_| is cleared whenever |output_rect_| changes, so we don't
289 if (!output_frame_) {
290 output_frame_.reset(new webrtc::BasicDesktopFrame(output_size));
291 memset(output_frame_->data(), 0, output_bytes);
293 DCHECK(output_frame_->size().equals(output_size));
297 uint8_t* output_rect_data = output_frame_->data() +
298 output_frame_
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoadapter.cc340 *out_frame = output_frame_.get();
399 if (!output_frame_ ||
400 output_frame_->GetWidth() != static_cast<size_t>(output_width) ||
401 output_frame_->GetHeight() != static_cast<size_t>(output_height)) {
402 output_frame_.reset(
404 if (!output_frame_) {
418 in_frame->StretchToFrame(output_frame_.get(), true, true);
423 output_frame_->SetToBlack();
426 output_frame_->SetElapsedTime(in_frame->GetElapsedTime());
427 output_frame_
[all...]
H A Dvideoadapter.h62 // true and set the out frame to output_frame_ if the input frame is adapted
67 // If a copy has taken place, |output_frame_| is owned by the VideoAdapter
99 bool black_output_; // Flag to tell if we need to black output_frame_.
100 bool is_black_; // Flag to tell if output_frame_ is currently black.
102 rtc::scoped_ptr<VideoFrame> output_frame_; member in class:cricket::VideoAdapter

Completed in 108 milliseconds