|
@@ -1316,52 +1316,50 @@ static int v4l_enum_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
struct file *file, void *fh, void *arg)
|
|
|
{
|
|
|
struct v4l2_fmtdesc *p = arg;
|
|
|
- struct video_device *vfd = video_devdata(file);
|
|
|
- bool is_vid = vfd->vfl_type == VFL_TYPE_GRABBER;
|
|
|
- bool is_sdr = vfd->vfl_type == VFL_TYPE_SDR;
|
|
|
- bool is_tch = vfd->vfl_type == VFL_TYPE_TOUCH;
|
|
|
- bool is_rx = vfd->vfl_dir != VFL_DIR_TX;
|
|
|
- bool is_tx = vfd->vfl_dir != VFL_DIR_RX;
|
|
|
- int ret = -EINVAL;
|
|
|
+ int ret = check_fmt(file, p->type);
|
|
|
+
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
+ ret = -EINVAL;
|
|
|
|
|
|
switch (p->type) {
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE:
|
|
|
- if (unlikely(!is_rx || (!is_vid && !is_tch) || !ops->vidioc_enum_fmt_vid_cap))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_vid_cap))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_vid_cap(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_enum_fmt_vid_cap_mplane))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_vid_cap_mplane))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_vid_cap_mplane(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_VIDEO_OVERLAY:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_enum_fmt_vid_overlay))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_vid_overlay))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_vid_overlay(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_enum_fmt_vid_out))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_vid_out))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_vid_out(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_enum_fmt_vid_out_mplane))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_vid_out_mplane))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_vid_out_mplane(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_SDR_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_sdr || !ops->vidioc_enum_fmt_sdr_cap))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_sdr_cap))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_sdr_cap(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_SDR_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_sdr || !ops->vidioc_enum_fmt_sdr_out))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_sdr_out))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_sdr_out(file, fh, arg);
|
|
|
break;
|
|
|
case V4L2_BUF_TYPE_META_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_enum_fmt_meta_cap))
|
|
|
+ if (unlikely(!ops->vidioc_enum_fmt_meta_cap))
|
|
|
break;
|
|
|
ret = ops->vidioc_enum_fmt_meta_cap(file, fh, arg);
|
|
|
break;
|
|
@@ -1375,13 +1373,10 @@ static int v4l_g_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
struct file *file, void *fh, void *arg)
|
|
|
{
|
|
|
struct v4l2_format *p = arg;
|
|
|
- struct video_device *vfd = video_devdata(file);
|
|
|
- bool is_vid = vfd->vfl_type == VFL_TYPE_GRABBER;
|
|
|
- bool is_sdr = vfd->vfl_type == VFL_TYPE_SDR;
|
|
|
- bool is_tch = vfd->vfl_type == VFL_TYPE_TOUCH;
|
|
|
- bool is_rx = vfd->vfl_dir != VFL_DIR_TX;
|
|
|
- bool is_tx = vfd->vfl_dir != VFL_DIR_RX;
|
|
|
- int ret;
|
|
|
+ int ret = check_fmt(file, p->type);
|
|
|
+
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
|
|
|
/*
|
|
|
* fmt can't be cleared for these overlay types due to the 'clips'
|
|
@@ -1409,7 +1404,7 @@ static int v4l_g_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
|
|
|
switch (p->type) {
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE:
|
|
|
- if (unlikely(!is_rx || (!is_vid && !is_tch) || !ops->vidioc_g_fmt_vid_cap))
|
|
|
+ if (unlikely(!ops->vidioc_g_fmt_vid_cap))
|
|
|
break;
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
ret = ops->vidioc_g_fmt_vid_cap(file, fh, arg);
|
|
@@ -1417,23 +1412,15 @@ static int v4l_g_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
return ret;
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_g_fmt_vid_cap_mplane))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_vid_cap_mplane(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OVERLAY:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_g_fmt_vid_overlay))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_vid_overlay(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VBI_CAPTURE:
|
|
|
- if (unlikely(!is_rx || is_vid || !ops->vidioc_g_fmt_vbi_cap))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_vbi_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
|
|
|
- if (unlikely(!is_rx || is_vid || !ops->vidioc_g_fmt_sliced_vbi_cap))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_sliced_vbi_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_g_fmt_vid_out))
|
|
|
+ if (unlikely(!ops->vidioc_g_fmt_vid_out))
|
|
|
break;
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
ret = ops->vidioc_g_fmt_vid_out(file, fh, arg);
|
|
@@ -1441,32 +1428,18 @@ static int v4l_g_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
return ret;
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_g_fmt_vid_out_mplane))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_vid_out_mplane(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_g_fmt_vid_out_overlay))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_vid_out_overlay(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VBI_OUTPUT:
|
|
|
- if (unlikely(!is_tx || is_vid || !ops->vidioc_g_fmt_vbi_out))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_vbi_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
|
|
|
- if (unlikely(!is_tx || is_vid || !ops->vidioc_g_fmt_sliced_vbi_out))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_sliced_vbi_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SDR_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_sdr || !ops->vidioc_g_fmt_sdr_cap))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_sdr_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SDR_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_sdr || !ops->vidioc_g_fmt_sdr_out))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_sdr_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_META_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_g_fmt_meta_cap))
|
|
|
- break;
|
|
|
return ops->vidioc_g_fmt_meta_cap(file, fh, arg);
|
|
|
}
|
|
|
return -EINVAL;
|
|
@@ -1492,12 +1465,10 @@ static int v4l_s_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
{
|
|
|
struct v4l2_format *p = arg;
|
|
|
struct video_device *vfd = video_devdata(file);
|
|
|
- bool is_vid = vfd->vfl_type == VFL_TYPE_GRABBER;
|
|
|
- bool is_sdr = vfd->vfl_type == VFL_TYPE_SDR;
|
|
|
- bool is_tch = vfd->vfl_type == VFL_TYPE_TOUCH;
|
|
|
- bool is_rx = vfd->vfl_dir != VFL_DIR_TX;
|
|
|
- bool is_tx = vfd->vfl_dir != VFL_DIR_RX;
|
|
|
- int ret;
|
|
|
+ int ret = check_fmt(file, p->type);
|
|
|
+
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
|
|
|
ret = v4l_enable_media_source(vfd);
|
|
|
if (ret)
|
|
@@ -1506,37 +1477,37 @@ static int v4l_s_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
|
|
|
switch (p->type) {
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE:
|
|
|
- if (unlikely(!is_rx || (!is_vid && !is_tch) || !ops->vidioc_s_fmt_vid_cap))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vid_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix);
|
|
|
ret = ops->vidioc_s_fmt_vid_cap(file, fh, arg);
|
|
|
/* just in case the driver zeroed it again */
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
- if (is_tch)
|
|
|
+ if (vfd->vfl_type == VFL_TYPE_TOUCH)
|
|
|
v4l_pix_format_touch(&p->fmt.pix);
|
|
|
return ret;
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_s_fmt_vid_cap_mplane))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vid_cap_mplane))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
|
|
|
return ops->vidioc_s_fmt_vid_cap_mplane(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OVERLAY:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_s_fmt_vid_overlay))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vid_overlay))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.win);
|
|
|
return ops->vidioc_s_fmt_vid_overlay(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VBI_CAPTURE:
|
|
|
- if (unlikely(!is_rx || is_vid || !ops->vidioc_s_fmt_vbi_cap))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vbi_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.vbi);
|
|
|
return ops->vidioc_s_fmt_vbi_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
|
|
|
- if (unlikely(!is_rx || is_vid || !ops->vidioc_s_fmt_sliced_vbi_cap))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_sliced_vbi_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sliced);
|
|
|
return ops->vidioc_s_fmt_sliced_vbi_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_s_fmt_vid_out))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vid_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix);
|
|
|
ret = ops->vidioc_s_fmt_vid_out(file, fh, arg);
|
|
@@ -1544,37 +1515,37 @@ static int v4l_s_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
return ret;
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_s_fmt_vid_out_mplane))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vid_out_mplane))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
|
|
|
return ops->vidioc_s_fmt_vid_out_mplane(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_s_fmt_vid_out_overlay))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vid_out_overlay))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.win);
|
|
|
return ops->vidioc_s_fmt_vid_out_overlay(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VBI_OUTPUT:
|
|
|
- if (unlikely(!is_tx || is_vid || !ops->vidioc_s_fmt_vbi_out))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_vbi_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.vbi);
|
|
|
return ops->vidioc_s_fmt_vbi_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
|
|
|
- if (unlikely(!is_tx || is_vid || !ops->vidioc_s_fmt_sliced_vbi_out))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_sliced_vbi_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sliced);
|
|
|
return ops->vidioc_s_fmt_sliced_vbi_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SDR_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_sdr || !ops->vidioc_s_fmt_sdr_cap))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_sdr_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sdr);
|
|
|
return ops->vidioc_s_fmt_sdr_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SDR_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_sdr || !ops->vidioc_s_fmt_sdr_out))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_sdr_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sdr);
|
|
|
return ops->vidioc_s_fmt_sdr_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_META_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_s_fmt_meta_cap))
|
|
|
+ if (unlikely(!ops->vidioc_s_fmt_meta_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.meta);
|
|
|
return ops->vidioc_s_fmt_meta_cap(file, fh, arg);
|
|
@@ -1586,19 +1557,16 @@ static int v4l_try_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
struct file *file, void *fh, void *arg)
|
|
|
{
|
|
|
struct v4l2_format *p = arg;
|
|
|
- struct video_device *vfd = video_devdata(file);
|
|
|
- bool is_vid = vfd->vfl_type == VFL_TYPE_GRABBER;
|
|
|
- bool is_sdr = vfd->vfl_type == VFL_TYPE_SDR;
|
|
|
- bool is_tch = vfd->vfl_type == VFL_TYPE_TOUCH;
|
|
|
- bool is_rx = vfd->vfl_dir != VFL_DIR_TX;
|
|
|
- bool is_tx = vfd->vfl_dir != VFL_DIR_RX;
|
|
|
- int ret;
|
|
|
+ int ret = check_fmt(file, p->type);
|
|
|
+
|
|
|
+ if (ret)
|
|
|
+ return ret;
|
|
|
|
|
|
v4l_sanitize_format(p);
|
|
|
|
|
|
switch (p->type) {
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE:
|
|
|
- if (unlikely(!is_rx || (!is_vid && !is_tch) || !ops->vidioc_try_fmt_vid_cap))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vid_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix);
|
|
|
ret = ops->vidioc_try_fmt_vid_cap(file, fh, arg);
|
|
@@ -1606,27 +1574,27 @@ static int v4l_try_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
return ret;
|
|
|
case V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_try_fmt_vid_cap_mplane))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vid_cap_mplane))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
|
|
|
return ops->vidioc_try_fmt_vid_cap_mplane(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OVERLAY:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_try_fmt_vid_overlay))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vid_overlay))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.win);
|
|
|
return ops->vidioc_try_fmt_vid_overlay(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VBI_CAPTURE:
|
|
|
- if (unlikely(!is_rx || is_vid || !ops->vidioc_try_fmt_vbi_cap))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vbi_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.vbi);
|
|
|
return ops->vidioc_try_fmt_vbi_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SLICED_VBI_CAPTURE:
|
|
|
- if (unlikely(!is_rx || is_vid || !ops->vidioc_try_fmt_sliced_vbi_cap))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_sliced_vbi_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sliced);
|
|
|
return ops->vidioc_try_fmt_sliced_vbi_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_try_fmt_vid_out))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vid_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix);
|
|
|
ret = ops->vidioc_try_fmt_vid_out(file, fh, arg);
|
|
@@ -1634,37 +1602,37 @@ static int v4l_try_fmt(const struct v4l2_ioctl_ops *ops,
|
|
|
p->fmt.pix.priv = V4L2_PIX_FMT_PRIV_MAGIC;
|
|
|
return ret;
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_try_fmt_vid_out_mplane))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vid_out_mplane))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.pix_mp.xfer_func);
|
|
|
return ops->vidioc_try_fmt_vid_out_mplane(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY:
|
|
|
- if (unlikely(!is_tx || !is_vid || !ops->vidioc_try_fmt_vid_out_overlay))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vid_out_overlay))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.win);
|
|
|
return ops->vidioc_try_fmt_vid_out_overlay(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_VBI_OUTPUT:
|
|
|
- if (unlikely(!is_tx || is_vid || !ops->vidioc_try_fmt_vbi_out))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_vbi_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.vbi);
|
|
|
return ops->vidioc_try_fmt_vbi_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SLICED_VBI_OUTPUT:
|
|
|
- if (unlikely(!is_tx || is_vid || !ops->vidioc_try_fmt_sliced_vbi_out))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_sliced_vbi_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sliced);
|
|
|
return ops->vidioc_try_fmt_sliced_vbi_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SDR_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_sdr || !ops->vidioc_try_fmt_sdr_cap))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_sdr_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sdr);
|
|
|
return ops->vidioc_try_fmt_sdr_cap(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_SDR_OUTPUT:
|
|
|
- if (unlikely(!is_tx || !is_sdr || !ops->vidioc_try_fmt_sdr_out))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_sdr_out))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.sdr);
|
|
|
return ops->vidioc_try_fmt_sdr_out(file, fh, arg);
|
|
|
case V4L2_BUF_TYPE_META_CAPTURE:
|
|
|
- if (unlikely(!is_rx || !is_vid || !ops->vidioc_try_fmt_meta_cap))
|
|
|
+ if (unlikely(!ops->vidioc_try_fmt_meta_cap))
|
|
|
break;
|
|
|
CLEAR_AFTER_FIELD(p, fmt.meta);
|
|
|
return ops->vidioc_try_fmt_meta_cap(file, fh, arg);
|