Re: [PATCH 4/6] uvcvideo: Set device_caps in VIDIOC_QUERYCAP

2012-11-23 Thread Hans Verkuil
On Fri November 23 2012 13:20:10 Laurent Pinchart wrote:
> Hi Hans,
> 
> Thanks for the review.
> 
> On Friday 16 November 2012 15:00:29 Hans Verkuil wrote:
> > On Thu September 27 2012 17:16:18 Laurent Pinchart wrote:
> > > Set the capabilities field to global capabilities, and the device_caps
> > > field to the video node capabilities.
> > > 
> > > This issue was found by the v4l2-compliance tool.
> > > 
> > > Signed-off-by: Laurent Pinchart 
> > > ---
> > > 
> > >  drivers/media/usb/uvc/uvc_driver.c |5 +
> > >  drivers/media/usb/uvc/uvc_v4l2.c   |   10 ++
> > >  drivers/media/usb/uvc/uvcvideo.h   |2 ++
> > >  3 files changed, 13 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/drivers/media/usb/uvc/uvc_driver.c
> > > b/drivers/media/usb/uvc/uvc_driver.c index 5967081..ae24f7d 100644
> > > --- a/drivers/media/usb/uvc/uvc_driver.c
> > > +++ b/drivers/media/usb/uvc/uvc_driver.c
> > > @@ -1741,6 +1741,11 @@ static int uvc_register_video(struct uvc_device
> > > *dev,
> > >   return ret;
> > >   }
> > > 
> > > + if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
> > > + stream->chain->caps |= V4L2_CAP_VIDEO_CAPTURE;
> > > + else
> > > + stream->chain->caps |= V4L2_CAP_VIDEO_OUTPUT;
> > > +
> > >   atomic_inc(&dev->nstreams);
> > >   return 0;
> > >  }
> > > diff --git a/drivers/media/usb/uvc/uvc_v4l2.c
> > > b/drivers/media/usb/uvc/uvc_v4l2.c index 3bd9373..b1aa55f 100644
> > > --- a/drivers/media/usb/uvc/uvc_v4l2.c
> > > +++ b/drivers/media/usb/uvc/uvc_v4l2.c
> > > @@ -565,12 +565,14 @@ static long uvc_v4l2_do_ioctl(struct file *file,
> > > unsigned int cmd, void *arg)> 
> > >   usb_make_path(stream->dev->udev,
> > > cap->bus_info, sizeof(cap->bus_info));
> > >   cap->version = LINUX_VERSION_CODE;
> > > + cap->capabilities = V4L2_CAP_DEVICE_CAPS | V4L2_CAP_STREAMING
> > > +   | chain->caps;
> > >   if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
> > > - cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
> > > -   | V4L2_CAP_STREAMING;
> > > + cap->device_caps = V4L2_CAP_VIDEO_CAPTURE
> > > +  | V4L2_CAP_STREAMING;
> > >   else
> > > - cap->capabilities = V4L2_CAP_VIDEO_OUTPUT
> > > -   | V4L2_CAP_STREAMING;
> > > + cap->device_caps = V4L2_CAP_VIDEO_OUTPUT
> > > +  | V4L2_CAP_STREAMING;
> > 
> > This seems weird. Wouldn't it be easier to do:
> > 
> > cap->device_caps = chain->caps | V4L2_CAP_STREAMING;
> > 
> > You don't need the if/else here.
> 
> No, because chain->caps can be V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT 
> as a chain can contain several video nodes. We want to caps of this 
> particular 
> video node only here.

That explains it :-)

Acked-by: Hans Verkuil 

Regards,

Hans
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 4/6] uvcvideo: Set device_caps in VIDIOC_QUERYCAP

2012-11-23 Thread Laurent Pinchart
Hi Hans,

Thanks for the review.

On Friday 16 November 2012 15:00:29 Hans Verkuil wrote:
> On Thu September 27 2012 17:16:18 Laurent Pinchart wrote:
> > Set the capabilities field to global capabilities, and the device_caps
> > field to the video node capabilities.
> > 
> > This issue was found by the v4l2-compliance tool.
> > 
> > Signed-off-by: Laurent Pinchart 
> > ---
> > 
> >  drivers/media/usb/uvc/uvc_driver.c |5 +
> >  drivers/media/usb/uvc/uvc_v4l2.c   |   10 ++
> >  drivers/media/usb/uvc/uvcvideo.h   |2 ++
> >  3 files changed, 13 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/media/usb/uvc/uvc_driver.c
> > b/drivers/media/usb/uvc/uvc_driver.c index 5967081..ae24f7d 100644
> > --- a/drivers/media/usb/uvc/uvc_driver.c
> > +++ b/drivers/media/usb/uvc/uvc_driver.c
> > @@ -1741,6 +1741,11 @@ static int uvc_register_video(struct uvc_device
> > *dev,
> > return ret;
> > }
> > 
> > +   if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
> > +   stream->chain->caps |= V4L2_CAP_VIDEO_CAPTURE;
> > +   else
> > +   stream->chain->caps |= V4L2_CAP_VIDEO_OUTPUT;
> > +
> > atomic_inc(&dev->nstreams);
> > return 0;
> >  }
> > diff --git a/drivers/media/usb/uvc/uvc_v4l2.c
> > b/drivers/media/usb/uvc/uvc_v4l2.c index 3bd9373..b1aa55f 100644
> > --- a/drivers/media/usb/uvc/uvc_v4l2.c
> > +++ b/drivers/media/usb/uvc/uvc_v4l2.c
> > @@ -565,12 +565,14 @@ static long uvc_v4l2_do_ioctl(struct file *file,
> > unsigned int cmd, void *arg)> 
> > usb_make_path(stream->dev->udev,
> >   cap->bus_info, sizeof(cap->bus_info));
> > cap->version = LINUX_VERSION_CODE;
> > +   cap->capabilities = V4L2_CAP_DEVICE_CAPS | V4L2_CAP_STREAMING
> > + | chain->caps;
> > if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
> > -   cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
> > - | V4L2_CAP_STREAMING;
> > +   cap->device_caps = V4L2_CAP_VIDEO_CAPTURE
> > +| V4L2_CAP_STREAMING;
> > else
> > -   cap->capabilities = V4L2_CAP_VIDEO_OUTPUT
> > - | V4L2_CAP_STREAMING;
> > +   cap->device_caps = V4L2_CAP_VIDEO_OUTPUT
> > +| V4L2_CAP_STREAMING;
> 
> This seems weird. Wouldn't it be easier to do:
> 
>   cap->device_caps = chain->caps | V4L2_CAP_STREAMING;
> 
> You don't need the if/else here.

No, because chain->caps can be V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_VIDEO_OUTPUT 
as a chain can contain several video nodes. We want to caps of this particular 
video node only here.

> > break;
> > }

-- 
Regards,

Laurent Pinchart

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 4/6] uvcvideo: Set device_caps in VIDIOC_QUERYCAP

2012-11-16 Thread Hans Verkuil
On Thu September 27 2012 17:16:18 Laurent Pinchart wrote:
> Set the capabilities field to global capabilities, and the device_caps
> field to the video node capabilities.
> 
> This issue was found by the v4l2-compliance tool.
> 
> Signed-off-by: Laurent Pinchart 
> ---
>  drivers/media/usb/uvc/uvc_driver.c |5 +
>  drivers/media/usb/uvc/uvc_v4l2.c   |   10 ++
>  drivers/media/usb/uvc/uvcvideo.h   |2 ++
>  3 files changed, 13 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/media/usb/uvc/uvc_driver.c 
> b/drivers/media/usb/uvc/uvc_driver.c
> index 5967081..ae24f7d 100644
> --- a/drivers/media/usb/uvc/uvc_driver.c
> +++ b/drivers/media/usb/uvc/uvc_driver.c
> @@ -1741,6 +1741,11 @@ static int uvc_register_video(struct uvc_device *dev,
>   return ret;
>   }
>  
> + if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
> + stream->chain->caps |= V4L2_CAP_VIDEO_CAPTURE;
> + else
> + stream->chain->caps |= V4L2_CAP_VIDEO_OUTPUT;
> +
>   atomic_inc(&dev->nstreams);
>   return 0;
>  }
> diff --git a/drivers/media/usb/uvc/uvc_v4l2.c 
> b/drivers/media/usb/uvc/uvc_v4l2.c
> index 3bd9373..b1aa55f 100644
> --- a/drivers/media/usb/uvc/uvc_v4l2.c
> +++ b/drivers/media/usb/uvc/uvc_v4l2.c
> @@ -565,12 +565,14 @@ static long uvc_v4l2_do_ioctl(struct file *file, 
> unsigned int cmd, void *arg)
>   usb_make_path(stream->dev->udev,
> cap->bus_info, sizeof(cap->bus_info));
>   cap->version = LINUX_VERSION_CODE;
> + cap->capabilities = V4L2_CAP_DEVICE_CAPS | V4L2_CAP_STREAMING
> +   | chain->caps;
>   if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
> - cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
> -   | V4L2_CAP_STREAMING;
> + cap->device_caps = V4L2_CAP_VIDEO_CAPTURE
> +  | V4L2_CAP_STREAMING;
>   else
> - cap->capabilities = V4L2_CAP_VIDEO_OUTPUT
> -   | V4L2_CAP_STREAMING;
> + cap->device_caps = V4L2_CAP_VIDEO_OUTPUT
> +  | V4L2_CAP_STREAMING;

This seems weird. Wouldn't it be easier to do:

cap->device_caps = chain->caps | V4L2_CAP_STREAMING;

You don't need the if/else here.

>   break;
>   }
>  
> diff --git a/drivers/media/usb/uvc/uvcvideo.h 
> b/drivers/media/usb/uvc/uvcvideo.h
> index 7244455..28ff015 100644
> --- a/drivers/media/usb/uvc/uvcvideo.h
> +++ b/drivers/media/usb/uvc/uvcvideo.h
> @@ -371,6 +371,8 @@ struct uvc_video_chain {
>   struct uvc_entity *selector;/* Selector unit */
>  
>   struct mutex ctrl_mutex;/* Protects ctrl.info */
> +
> + u32 caps;   /* V4L2 chain-wide caps */
>  };
>  
>  struct uvc_stats_frame {
> 

Regards,

Hans
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 4/6] uvcvideo: Set device_caps in VIDIOC_QUERYCAP

2012-09-27 Thread Laurent Pinchart
Set the capabilities field to global capabilities, and the device_caps
field to the video node capabilities.

This issue was found by the v4l2-compliance tool.

Signed-off-by: Laurent Pinchart 
---
 drivers/media/usb/uvc/uvc_driver.c |5 +
 drivers/media/usb/uvc/uvc_v4l2.c   |   10 ++
 drivers/media/usb/uvc/uvcvideo.h   |2 ++
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/drivers/media/usb/uvc/uvc_driver.c 
b/drivers/media/usb/uvc/uvc_driver.c
index 5967081..ae24f7d 100644
--- a/drivers/media/usb/uvc/uvc_driver.c
+++ b/drivers/media/usb/uvc/uvc_driver.c
@@ -1741,6 +1741,11 @@ static int uvc_register_video(struct uvc_device *dev,
return ret;
}
 
+   if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
+   stream->chain->caps |= V4L2_CAP_VIDEO_CAPTURE;
+   else
+   stream->chain->caps |= V4L2_CAP_VIDEO_OUTPUT;
+
atomic_inc(&dev->nstreams);
return 0;
 }
diff --git a/drivers/media/usb/uvc/uvc_v4l2.c b/drivers/media/usb/uvc/uvc_v4l2.c
index 3bd9373..b1aa55f 100644
--- a/drivers/media/usb/uvc/uvc_v4l2.c
+++ b/drivers/media/usb/uvc/uvc_v4l2.c
@@ -565,12 +565,14 @@ static long uvc_v4l2_do_ioctl(struct file *file, unsigned 
int cmd, void *arg)
usb_make_path(stream->dev->udev,
  cap->bus_info, sizeof(cap->bus_info));
cap->version = LINUX_VERSION_CODE;
+   cap->capabilities = V4L2_CAP_DEVICE_CAPS | V4L2_CAP_STREAMING
+ | chain->caps;
if (stream->type == V4L2_BUF_TYPE_VIDEO_CAPTURE)
-   cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
- | V4L2_CAP_STREAMING;
+   cap->device_caps = V4L2_CAP_VIDEO_CAPTURE
+| V4L2_CAP_STREAMING;
else
-   cap->capabilities = V4L2_CAP_VIDEO_OUTPUT
- | V4L2_CAP_STREAMING;
+   cap->device_caps = V4L2_CAP_VIDEO_OUTPUT
+| V4L2_CAP_STREAMING;
break;
}
 
diff --git a/drivers/media/usb/uvc/uvcvideo.h b/drivers/media/usb/uvc/uvcvideo.h
index 7244455..28ff015 100644
--- a/drivers/media/usb/uvc/uvcvideo.h
+++ b/drivers/media/usb/uvc/uvcvideo.h
@@ -371,6 +371,8 @@ struct uvc_video_chain {
struct uvc_entity *selector;/* Selector unit */
 
struct mutex ctrl_mutex;/* Protects ctrl.info */
+
+   u32 caps;   /* V4L2 chain-wide caps */
 };
 
 struct uvc_stats_frame {
-- 
1.7.8.6

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html