Lines Matching refs:pix_mp_fmt
219 * @pix_mp_fmt: pointer to &struct v4l2_pix_format_mplane to be filled
223 v4l2_fill_pix_format_mplane(struct v4l2_pix_format_mplane *pix_mp_fmt,
226 pix_mp_fmt->width = mbus_fmt->width;
227 pix_mp_fmt->height = mbus_fmt->height;
228 pix_mp_fmt->field = mbus_fmt->field;
229 pix_mp_fmt->colorspace = mbus_fmt->colorspace;
230 pix_mp_fmt->ycbcr_enc = mbus_fmt->ycbcr_enc;
231 pix_mp_fmt->quantization = mbus_fmt->quantization;
232 pix_mp_fmt->xfer_func = mbus_fmt->xfer_func;
240 * @pix_mp_fmt: pointer to &struct v4l2_pix_format_mplane to be used as model
244 const struct v4l2_pix_format_mplane *pix_mp_fmt)
246 mbus_fmt->width = pix_mp_fmt->width;
247 mbus_fmt->height = pix_mp_fmt->height;
248 mbus_fmt->field = pix_mp_fmt->field;
249 mbus_fmt->colorspace = pix_mp_fmt->colorspace;
250 mbus_fmt->ycbcr_enc = pix_mp_fmt->ycbcr_enc;
251 mbus_fmt->quantization = pix_mp_fmt->quantization;
252 mbus_fmt->xfer_func = pix_mp_fmt->xfer_func;