|
@@ -94,6 +94,8 @@ static inline void v4l2_fill_pix_format(struct v4l2_pix_format *pix_fmt,
|
|
|
pix_fmt->height = mbus_fmt->height;
|
|
|
pix_fmt->field = mbus_fmt->field;
|
|
|
pix_fmt->colorspace = mbus_fmt->colorspace;
|
|
|
+ pix_fmt->ycbcr_enc = mbus_fmt->ycbcr_enc;
|
|
|
+ pix_fmt->quantization = mbus_fmt->quantization;
|
|
|
}
|
|
|
|
|
|
static inline void v4l2_fill_mbus_format(struct v4l2_mbus_framefmt *mbus_fmt,
|
|
@@ -104,6 +106,8 @@ static inline void v4l2_fill_mbus_format(struct v4l2_mbus_framefmt *mbus_fmt,
|
|
|
mbus_fmt->height = pix_fmt->height;
|
|
|
mbus_fmt->field = pix_fmt->field;
|
|
|
mbus_fmt->colorspace = pix_fmt->colorspace;
|
|
|
+ mbus_fmt->ycbcr_enc = pix_fmt->ycbcr_enc;
|
|
|
+ mbus_fmt->quantization = pix_fmt->quantization;
|
|
|
mbus_fmt->code = code;
|
|
|
}
|
|
|
|