Lines Matching defs:sink
572 struct flite_frame *sink = &fimc->inp_frame;
586 mf->code = sink->fmt->mbus_code;
587 mf->colorspace = sink->fmt->colorspace;
588 rect = &sink->rect;
591 /* Allow changing format only on sink pad */
616 v4l2_dbg(1, debug, &fimc->subdev, "(%d,%d)/%dx%d, sink fmt: %dx%d\n",
627 same as size of the sink crop rectangle. */
775 /* Retrieve format at the sink pad */
1064 struct flite_frame *sink = &fimc->inp_frame;
1100 sink->f_width = mf->width;
1101 sink->f_height = mf->height;
1102 sink->fmt = ffmt;
1103 /* Set sink crop rectangle */
1104 sink->rect.width = mf->width;
1105 sink->rect.height = mf->height;
1106 sink->rect.left = 0;
1107 sink->rect.top = 0;
1109 source->rect = sink->rect;
1368 struct flite_frame *sink = &fimc->inp_frame;
1371 sink->fmt = &fimc_lite_formats[0];
1372 sink->f_width = FLITE_DEFAULT_WIDTH;
1373 sink->f_height = FLITE_DEFAULT_HEIGHT;
1375 sink->rect.width = FLITE_DEFAULT_WIDTH;
1376 sink->rect.height = FLITE_DEFAULT_HEIGHT;
1377 sink->rect.left = 0;
1378 sink->rect.top = 0;
1380 *source = *sink;