Home | History | Annotate | Download | only in base

Lines Matching refs:out_frame

152 // out_frame - actual frame output by adapter.  Should be a direct scale of
265 VideoFrame** out_frame) {
267 if (!in_frame || !out_frame) {
311 *out_frame = NULL;
333 *out_frame = in_frame;
340 *out_frame = output_frame_.get();
344 if (in_frame->GetWidth() != (*out_frame)->GetWidth() ||
345 in_frame->GetHeight() != (*out_frame)->GetHeight()) {
357 if (previous_width_ && (previous_width_ != (*out_frame)->GetWidth() ||
358 previous_height_ != (*out_frame)->GetHeight())) {
374 << " Output: " << (*out_frame)->GetWidth()
375 << "x" << (*out_frame)->GetHeight()
379 previous_width_ = (*out_frame)->GetWidth();
380 previous_height_ = (*out_frame)->GetHeight();