Lines Matching refs:output

343 	/* disable output */
495 struct v4l2_rect output;
503 * Find input geometry, that we can use to produce output, closest to the
523 /* Select scales to come as close as possible to the output image */
526 unsigned int found = geo->output.width * vou_scale_h_den[i] /
551 unsigned int found = geo->output.height * vou_scale_v_den[i] /
573 * Find output geometry, that we can produce, using VOU scaling, closest to
592 /* Select scales to come as close as possible to the output image */
602 err = abs(found - geo->output.width);
612 geo->output.width = best;
614 if (geo->output.left + best > width_max)
615 geo->output.left = width_max - best;
632 err = abs(found - geo->output.height);
642 geo->output.height = best;
644 if (geo->output.top + best > height_max)
645 geo->output.top = height_max - best;
712 geo.output = vou_dev->rect;
716 mbfmt->width = geo.output.width;
717 mbfmt->height = geo.output.height;
725 geo.output.width, geo.output.height, mbfmt->width, mbfmt->height);
738 if (mbfmt->width != geo.output.width ||
739 mbfmt->height != geo.output.height) {
740 geo.output.width = mbfmt->width;
741 geo.output.height = mbfmt->height;
746 /* We tried to preserve output rectangle, but it could have changed */
747 vou_dev->rect = geo.output;
967 geo.output = *rect;
972 sd_sel.r.width = geo.output.width;
973 sd_sel.r.height = geo.output.height;
980 format.format.width = geo.output.width;
981 format.format.height = geo.output.height;
994 geo.output.width = format.format.width;
995 geo.output.height = format.format.height;
1003 /* We tried to preserve output rectangle, but it could have changed */
1004 vou_dev->rect = geo.output;