From: Michael Grzeschik <m.grzesc...@pengutronix.de>

This patch adds ENUM_FMT as possible ioctl to the uvc v4l2 device.
That makes userspace applications with a generic IOCTL calling
convention make also use of it.

Signed-off-by: Michael Grzeschik <m.grzesc...@pengutronix.de>
---
 drivers/usb/gadget/uvc_v4l2.c | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/drivers/usb/gadget/uvc_v4l2.c b/drivers/usb/gadget/uvc_v4l2.c
index ad48e81..4d806b0 100644
--- a/drivers/usb/gadget/uvc_v4l2.c
+++ b/drivers/usb/gadget/uvc_v4l2.c
@@ -183,6 +183,30 @@ uvc_v4l2_do_ioctl(struct file *file, unsigned int cmd, 
void *arg)
                break;
        }
 
+       case VIDIOC_ENUM_FMT:
+       {
+               struct v4l2_fmtdesc *f = arg;
+
+               switch (f->type) {
+               case V4L2_BUF_TYPE_VIDEO_OUTPUT:
+                       switch (f->index) {
+                       case 0:
+                               strcpy(f->description, "YUV 4:2:2");
+                               f->pixelformat = V4L2_PIX_FMT_YUYV;
+                               break;
+                       case 1:
+                               strcpy(f->description, "MJPEG");
+                               f->pixelformat = V4L2_PIX_FMT_MJPEG;
+                               break;
+                       default:
+                               return -EINVAL;
+                       }
+               default:
+                       break;
+               }
+               break;
+       }
+
        /* Get & Set format */
        case VIDIOC_G_FMT:
        {
-- 
1.8.2.rc2

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

Reply via email to