Lines Matching defs:mbus_fmt

177  * @mbus_fmt:	pointer to &struct v4l2_mbus_framefmt to be used as model
181 const struct v4l2_mbus_framefmt *mbus_fmt)
183 pix_fmt->width = mbus_fmt->width;
184 pix_fmt->height = mbus_fmt->height;
185 pix_fmt->field = mbus_fmt->field;
186 pix_fmt->colorspace = mbus_fmt->colorspace;
187 pix_fmt->ycbcr_enc = mbus_fmt->ycbcr_enc;
188 pix_fmt->quantization = mbus_fmt->quantization;
189 pix_fmt->xfer_func = mbus_fmt->xfer_func;
197 * @mbus_fmt: pointer to &struct v4l2_mbus_framefmt to be filled
201 static inline void v4l2_fill_mbus_format(struct v4l2_mbus_framefmt *mbus_fmt,
205 mbus_fmt->width = pix_fmt->width;
206 mbus_fmt->height = pix_fmt->height;
207 mbus_fmt->field = pix_fmt->field;
208 mbus_fmt->colorspace = pix_fmt->colorspace;
209 mbus_fmt->ycbcr_enc = pix_fmt->ycbcr_enc;
210 mbus_fmt->quantization = pix_fmt->quantization;
211 mbus_fmt->xfer_func = pix_fmt->xfer_func;
212 mbus_fmt->code = code;
220 * @mbus_fmt: pointer to &struct v4l2_mbus_framefmt to be used as model
224 const struct v4l2_mbus_framefmt *mbus_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;
239 * @mbus_fmt: pointer to &struct v4l2_mbus_framefmt to be filled
243 v4l2_fill_mbus_format_mplane(struct v4l2_mbus_framefmt *mbus_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;