Lines Matching refs:pix_mp_fmt
176 * @pix_mp_fmt: pointer to &struct v4l2_pix_format_mplane to be filled
180 v4l2_fill_pix_format_mplane(struct v4l2_pix_format_mplane *pix_mp_fmt,
183 pix_mp_fmt->width = mbus_fmt->width;
184 pix_mp_fmt->height = mbus_fmt->height;
185 pix_mp_fmt->field = mbus_fmt->field;
186 pix_mp_fmt->colorspace = mbus_fmt->colorspace;
187 pix_mp_fmt->ycbcr_enc = mbus_fmt->ycbcr_enc;
188 pix_mp_fmt->quantization = mbus_fmt->quantization;
189 pix_mp_fmt->xfer_func = mbus_fmt->xfer_func;
197 * @pix_mp_fmt: pointer to &struct v4l2_pix_format_mplane to be used as model
201 const struct v4l2_pix_format_mplane *pix_mp_fmt)
203 mbus_fmt->width = pix_mp_fmt->width;
204 mbus_fmt->height = pix_mp_fmt->height;
205 mbus_fmt->field = pix_mp_fmt->field;
206 mbus_fmt->colorspace = pix_mp_fmt->colorspace;
207 mbus_fmt->ycbcr_enc = pix_mp_fmt->ycbcr_enc;
208 mbus_fmt->quantization = pix_mp_fmt->quantization;
209 mbus_fmt->xfer_func = pix_mp_fmt->xfer_func;