Lines Matching defs:pix_mp_fmt
242 * @pix_mp_fmt: pointer to &struct v4l2_pix_format_mplane to be filled
246 v4l2_fill_pix_format_mplane(struct v4l2_pix_format_mplane *pix_mp_fmt,
249 pix_mp_fmt->width = mbus_fmt->width;
250 pix_mp_fmt->height = mbus_fmt->height;
251 pix_mp_fmt->field = mbus_fmt->field;
252 pix_mp_fmt->colorspace = mbus_fmt->colorspace;
253 pix_mp_fmt->ycbcr_enc = mbus_fmt->ycbcr_enc;
254 pix_mp_fmt->quantization = mbus_fmt->quantization;
255 pix_mp_fmt->xfer_func = mbus_fmt->xfer_func;
263 * @pix_mp_fmt: pointer to &struct v4l2_pix_format_mplane to be used as model
267 const struct v4l2_pix_format_mplane *pix_mp_fmt)
269 mbus_fmt->width = pix_mp_fmt->width;
270 mbus_fmt->height = pix_mp_fmt->height;
271 mbus_fmt->field = pix_mp_fmt->field;
272 mbus_fmt->colorspace = pix_mp_fmt->colorspace;
273 mbus_fmt->ycbcr_enc = pix_mp_fmt->ycbcr_enc;
274 mbus_fmt->quantization = pix_mp_fmt->quantization;
275 mbus_fmt->xfer_func = pix_mp_fmt->xfer_func;