|
@@ -513,7 +513,7 @@ static int vpif_update_std_info(struct channel_obj *ch)
|
|
|
if (ch->vpifparams.iface.if_type == VPIF_IF_RAW_BAYER)
|
|
|
common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_SBGGR8;
|
|
|
else
|
|
|
- common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV422P;
|
|
|
+ common->fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_NV16;
|
|
|
|
|
|
common->fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
|
|
|
|
@@ -917,8 +917,8 @@ static int vpif_enum_fmt_vid_cap(struct file *file, void *priv,
|
|
|
fmt->pixelformat = V4L2_PIX_FMT_SBGGR8;
|
|
|
} else {
|
|
|
fmt->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
|
|
- strcpy(fmt->description, "YCbCr4:2:2 YC Planar");
|
|
|
- fmt->pixelformat = V4L2_PIX_FMT_YUV422P;
|
|
|
+ strcpy(fmt->description, "YCbCr4:2:2 Semi-Planar");
|
|
|
+ fmt->pixelformat = V4L2_PIX_FMT_NV16;
|
|
|
}
|
|
|
return 0;
|
|
|
}
|
|
@@ -946,8 +946,8 @@ static int vpif_try_fmt_vid_cap(struct file *file, void *priv,
|
|
|
if (pixfmt->pixelformat != V4L2_PIX_FMT_SBGGR8)
|
|
|
pixfmt->pixelformat = V4L2_PIX_FMT_SBGGR8;
|
|
|
} else {
|
|
|
- if (pixfmt->pixelformat != V4L2_PIX_FMT_YUV422P)
|
|
|
- pixfmt->pixelformat = V4L2_PIX_FMT_YUV422P;
|
|
|
+ if (pixfmt->pixelformat != V4L2_PIX_FMT_NV16)
|
|
|
+ pixfmt->pixelformat = V4L2_PIX_FMT_NV16;
|
|
|
}
|
|
|
|
|
|
common->fmt.fmt.pix.pixelformat = pixfmt->pixelformat;
|