Lines Matching refs:sink_format
502 struct v4l2_mbus_framefmt *sink_format; in rzg2l_csi2_set_format() local
510 sink_format = v4l2_subdev_get_pad_format(sd, state, RZG2L_CSI2_SINK); in rzg2l_csi2_set_format()
513 sink_format->code = rzg2l_csi2_formats[0].code; in rzg2l_csi2_set_format()
515 sink_format->code = fmt->format.code; in rzg2l_csi2_set_format()
517 sink_format->field = V4L2_FIELD_NONE; in rzg2l_csi2_set_format()
518 sink_format->colorspace = fmt->format.colorspace; in rzg2l_csi2_set_format()
519 sink_format->xfer_func = fmt->format.xfer_func; in rzg2l_csi2_set_format()
520 sink_format->ycbcr_enc = fmt->format.ycbcr_enc; in rzg2l_csi2_set_format()
521 sink_format->quantization = fmt->format.quantization; in rzg2l_csi2_set_format()
522 sink_format->width = clamp_t(u32, fmt->format.width, in rzg2l_csi2_set_format()
524 sink_format->height = clamp_t(u32, fmt->format.height, in rzg2l_csi2_set_format()
526 fmt->format = *sink_format; in rzg2l_csi2_set_format()
529 *src_format = *sink_format; in rzg2l_csi2_set_format()