]> code.ossystems Code Review - openembedded-core.git/blob
b81b20419eec406bf44c23547f0aeffd030a8158
[openembedded-core.git] /
1 From e041e57cafca24cf92430cdf3cc091060a271e19 Mon Sep 17 00:00:00 2001
2 From: Sakari Ailus <sakari.ailus@nokia.com>
3 Date: Fri, 31 Oct 2008 10:20:31 +0200
4 Subject: [PATCH] V4L: int device: add support for VIDIOC_QUERYMENU
5
6 Signed-off-by: Tuukka Toivonen <tuukka.o.toivonen@nokia.com>
7 ---
8  include/media/v4l2-int-device.h |    2 ++
9  1 files changed, 2 insertions(+), 0 deletions(-)
10
11 diff --git a/include/media/v4l2-int-device.h b/include/media/v4l2-int-device.h
12 index 5d254c4..81f4863 100644
13 --- a/include/media/v4l2-int-device.h
14 +++ b/include/media/v4l2-int-device.h
15 @@ -178,6 +178,7 @@ enum v4l2_int_ioctl_num {
16         vidioc_int_s_fmt_cap_num,
17         vidioc_int_try_fmt_cap_num,
18         vidioc_int_queryctrl_num,
19 +       vidioc_int_querymenu_num,
20         vidioc_int_g_ctrl_num,
21         vidioc_int_s_ctrl_num,
22         vidioc_int_cropcap_num,
23 @@ -282,6 +283,7 @@ V4L2_INT_WRAPPER_1(g_fmt_cap, struct v4l2_format, *);
24  V4L2_INT_WRAPPER_1(s_fmt_cap, struct v4l2_format, *);
25  V4L2_INT_WRAPPER_1(try_fmt_cap, struct v4l2_format, *);
26  V4L2_INT_WRAPPER_1(queryctrl, struct v4l2_queryctrl, *);
27 +V4L2_INT_WRAPPER_1(querymenu, struct v4l2_querymenu, *);
28  V4L2_INT_WRAPPER_1(g_ctrl, struct v4l2_control, *);
29  V4L2_INT_WRAPPER_1(s_ctrl, struct v4l2_control, *);
30  V4L2_INT_WRAPPER_1(cropcap, struct v4l2_cropcap, *);
31 -- 
32 1.5.6.5
33