Lines Matching refs:sink_format
509 struct v4l2_mbus_framefmt *sink_format; in rzg2l_csi2_set_format() local
517 sink_format = v4l2_subdev_state_get_format(state, RZG2L_CSI2_SINK); in rzg2l_csi2_set_format()
520 sink_format->code = rzg2l_csi2_formats[0].code; in rzg2l_csi2_set_format()
522 sink_format->code = fmt->format.code; in rzg2l_csi2_set_format()
524 sink_format->field = V4L2_FIELD_NONE; in rzg2l_csi2_set_format()
525 sink_format->colorspace = fmt->format.colorspace; in rzg2l_csi2_set_format()
526 sink_format->xfer_func = fmt->format.xfer_func; in rzg2l_csi2_set_format()
527 sink_format->ycbcr_enc = fmt->format.ycbcr_enc; in rzg2l_csi2_set_format()
528 sink_format->quantization = fmt->format.quantization; in rzg2l_csi2_set_format()
529 sink_format->width = clamp_t(u32, fmt->format.width, in rzg2l_csi2_set_format()
531 sink_format->height = clamp_t(u32, fmt->format.height, in rzg2l_csi2_set_format()
533 fmt->format = *sink_format; in rzg2l_csi2_set_format()
536 *src_format = *sink_format; in rzg2l_csi2_set_format()