Home | History | Annotate | Download | only in base

Lines Matching refs:frame

51   // taken by the video frame signal.
114 void CaptureRenderAdapter::MaybeSetRenderingSize(const VideoFrame* frame) {
117 const bool new_resolution = iter->render_width != frame->GetWidth() ||
118 iter->render_height != frame->GetHeight();
120 if (iter->renderer->SetSize(static_cast<int>(frame->GetWidth()),
121 static_cast<int>(frame->GetHeight()), 0)) {
122 iter->render_width = frame->GetWidth();
123 iter->render_height = frame->GetHeight();
125 LOG(LS_ERROR) << "Captured frame size not supported by renderer: " <<
126 frame->GetWidth() << " x " << frame->GetHeight();