blob: 039a9694fd1d410d5d45d9fb1f37f5ab1cd78575 [file] [log] [blame]
Sakari Ailusdd966082010-03-27 10:58:24 -03001<refentry id="vidioc-subscribe-event">
2 <refmeta>
3 <refentrytitle>ioctl VIDIOC_SUBSCRIBE_EVENT, VIDIOC_UNSUBSCRIBE_EVENT</refentrytitle>
4 &manvol;
5 </refmeta>
6
7 <refnamediv>
8 <refname>VIDIOC_SUBSCRIBE_EVENT, VIDIOC_UNSUBSCRIBE_EVENT</refname>
9 <refpurpose>Subscribe or unsubscribe event</refpurpose>
10 </refnamediv>
11
12 <refsynopsisdiv>
13 <funcsynopsis>
14 <funcprototype>
15 <funcdef>int <function>ioctl</function></funcdef>
16 <paramdef>int <parameter>fd</parameter></paramdef>
17 <paramdef>int <parameter>request</parameter></paramdef>
18 <paramdef>struct v4l2_event_subscription
19*<parameter>argp</parameter></paramdef>
20 </funcprototype>
21 </funcsynopsis>
22 </refsynopsisdiv>
23
24 <refsect1>
25 <title>Arguments</title>
26
27 <variablelist>
28 <varlistentry>
29 <term><parameter>fd</parameter></term>
30 <listitem>
31 <para>&fd;</para>
32 </listitem>
33 </varlistentry>
34 <varlistentry>
35 <term><parameter>request</parameter></term>
36 <listitem>
37 <para>VIDIOC_SUBSCRIBE_EVENT, VIDIOC_UNSUBSCRIBE_EVENT</para>
38 </listitem>
39 </varlistentry>
40 <varlistentry>
41 <term><parameter>argp</parameter></term>
42 <listitem>
43 <para></para>
44 </listitem>
45 </varlistentry>
46 </variablelist>
47 </refsect1>
48
49 <refsect1>
50 <title>Description</title>
51
52 <para>Subscribe or unsubscribe V4L2 event. Subscribed events are
53 dequeued by using the &VIDIOC-DQEVENT; ioctl.</para>
54
55 <table frame="none" pgwide="1" id="v4l2-event-subscription">
56 <title>struct <structname>v4l2_event_subscription</structname></title>
57 <tgroup cols="3">
58 &cs-str;
59 <tbody valign="top">
60 <row>
61 <entry>__u32</entry>
62 <entry><structfield>type</structfield></entry>
63 <entry>Type of the event.</entry>
64 </row>
65 <row>
66 <entry>__u32</entry>
Hans Verkuil85724982011-06-07 09:53:37 -030067 <entry><structfield>id</structfield></entry>
68 <entry>ID of the event source. If there is no ID associated with
69 the event source, then set this to 0. Whether or not an event
70 needs an ID depends on the event type.</entry>
71 </row>
72 <row>
73 <entry>__u32</entry>
74 <entry><structfield>flags</structfield></entry>
75 <entry>Event flags, see <xref linkend="event-flags" />.</entry>
76 </row>
77 <row>
78 <entry>__u32</entry>
79 <entry><structfield>reserved</structfield>[5]</entry>
Sakari Ailusdd966082010-03-27 10:58:24 -030080 <entry>Reserved for future extensions. Drivers and applications
81 must set the array to zero.</entry>
82 </row>
83 </tbody>
84 </tgroup>
85 </table>
86
87 <table frame="none" pgwide="1" id="event-type">
88 <title>Event Types</title>
89 <tgroup cols="3">
90 &cs-def;
91 <tbody valign="top">
92 <row>
93 <entry><constant>V4L2_EVENT_ALL</constant></entry>
94 <entry>0</entry>
95 <entry>All events. V4L2_EVENT_ALL is valid only for
96 VIDIOC_UNSUBSCRIBE_EVENT for unsubscribing all events at once.
97 </entry>
98 </row>
99 <row>
Hans Verkuil0e1de382010-03-27 14:10:57 -0300100 <entry><constant>V4L2_EVENT_VSYNC</constant></entry>
101 <entry>1</entry>
102 <entry>This event is triggered on the vertical sync.
Hans Verkuile9690842011-06-18 06:58:29 -0300103 This event has a &v4l2-event-vsync; associated with it.
Hans Verkuil0e1de382010-03-27 14:10:57 -0300104 </entry>
105 </row>
106 <row>
107 <entry><constant>V4L2_EVENT_EOS</constant></entry>
108 <entry>2</entry>
109 <entry>This event is triggered when the end of a stream is reached.
110 This is typically used with MPEG decoders to report to the application
111 when the last of the MPEG stream has been decoded.
112 </entry>
113 </row>
114 <row>
Hans Verkuil85724982011-06-07 09:53:37 -0300115 <entry><constant>V4L2_EVENT_CTRL</constant></entry>
116 <entry>3</entry>
117 <entry>This event requires that the <structfield>id</structfield>
118 matches the control ID from which you want to receive events.
119 This event is triggered if the control's value changes, if a
120 button control is pressed or if the control's flags change.
Hans Verkuile9690842011-06-18 06:58:29 -0300121 This event has a &v4l2-event-ctrl; associated with it. This struct
Hans Verkuil85724982011-06-07 09:53:37 -0300122 contains much of the same information as &v4l2-queryctrl; and
123 &v4l2-control;.
124
125 If the event is generated due to a call to &VIDIOC-S-CTRL; or
126 &VIDIOC-S-EXT-CTRLS;, then the event will not be sent to
127 the file handle that called the ioctl function. This prevents
128 nasty feedback loops.
Hans Verkuile9690842011-06-18 06:58:29 -0300129
130 This event type will ensure that no information is lost when
131 more events are raised than there is room internally. In that
132 case the &v4l2-event-ctrl; of the second-oldest event is kept,
133 but the <structfield>changes</structfield> field of the
134 second-oldest event is ORed with the <structfield>changes</structfield>
135 field of the oldest event.
Hans Verkuil85724982011-06-07 09:53:37 -0300136 </entry>
137 </row>
138 <row>
Sakari Ailusdd966082010-03-27 10:58:24 -0300139 <entry><constant>V4L2_EVENT_PRIVATE_START</constant></entry>
140 <entry>0x08000000</entry>
141 <entry>Base event number for driver-private events.</entry>
142 </row>
143 </tbody>
144 </tgroup>
145 </table>
146
Hans Verkuil85724982011-06-07 09:53:37 -0300147 <table pgwide="1" frame="none" id="event-flags">
148 <title>Event Flags</title>
149 <tgroup cols="3">
150 &cs-def;
151 <tbody valign="top">
152 <row>
153 <entry><constant>V4L2_EVENT_SUB_FL_SEND_INITIAL</constant></entry>
154 <entry>0x0001</entry>
155 <entry>When this event is subscribed an initial event will be sent
156 containing the current status. This only makes sense for events
Hans Verkuile9690842011-06-18 06:58:29 -0300157 that are triggered by a status change such as <constant>V4L2_EVENT_CTRL</constant>.
158 Other events will ignore this flag.</entry>
Hans Verkuil85724982011-06-07 09:53:37 -0300159 </row>
160 </tbody>
161 </tgroup>
162 </table>
163
Hans Verkuil0e1de382010-03-27 14:10:57 -0300164 <table frame="none" pgwide="1" id="v4l2-event-vsync">
165 <title>struct <structname>v4l2_event_vsync</structname></title>
166 <tgroup cols="3">
167 &cs-str;
168 <tbody valign="top">
169 <row>
170 <entry>__u8</entry>
171 <entry><structfield>field</structfield></entry>
172 <entry>The upcoming field. See &v4l2-field;.</entry>
173 </row>
174 </tbody>
175 </tgroup>
176 </table>
177
Hans Verkuil85724982011-06-07 09:53:37 -0300178 <table frame="none" pgwide="1" id="v4l2-event-ctrl">
179 <title>struct <structname>v4l2_event_ctrl</structname></title>
180 <tgroup cols="4">
181 &cs-str;
182 <tbody valign="top">
183 <row>
184 <entry>__u32</entry>
185 <entry><structfield>changes</structfield></entry>
186 <entry></entry>
187 <entry>A bitmask that tells what has changed. See <xref linkend="changes-flags" />.</entry>
188 </row>
189 <row>
190 <entry>__u32</entry>
191 <entry><structfield>type</structfield></entry>
192 <entry></entry>
193 <entry>The type of the control. See &v4l2-ctrl-type;.</entry>
194 </row>
195 <row>
196 <entry>union (anonymous)</entry>
197 <entry></entry>
198 <entry></entry>
199 <entry></entry>
200 </row>
201 <row>
202 <entry></entry>
203 <entry>__s32</entry>
204 <entry><structfield>value</structfield></entry>
205 <entry>The 32-bit value of the control for 32-bit control types.
206 This is 0 for string controls since the value of a string
207 cannot be passed using &VIDIOC-DQEVENT;.</entry>
208 </row>
209 <row>
210 <entry></entry>
211 <entry>__s64</entry>
212 <entry><structfield>value64</structfield></entry>
213 <entry>The 64-bit value of the control for 64-bit control types.</entry>
214 </row>
215 <row>
216 <entry>__u32</entry>
217 <entry><structfield>flags</structfield></entry>
218 <entry></entry>
219 <entry>The control flags. See <xref linkend="control-flags" />.</entry>
220 </row>
221 <row>
222 <entry>__s32</entry>
223 <entry><structfield>minimum</structfield></entry>
224 <entry></entry>
225 <entry>The minimum value of the control. See &v4l2-queryctrl;.</entry>
226 </row>
227 <row>
228 <entry>__s32</entry>
229 <entry><structfield>maximum</structfield></entry>
230 <entry></entry>
231 <entry>The maximum value of the control. See &v4l2-queryctrl;.</entry>
232 </row>
233 <row>
234 <entry>__s32</entry>
235 <entry><structfield>step</structfield></entry>
236 <entry></entry>
237 <entry>The step value of the control. See &v4l2-queryctrl;.</entry>
238 </row>
239 <row>
240 <entry>__s32</entry>
241 <entry><structfield>default_value</structfield></entry>
242 <entry></entry>
243 <entry>The default value value of the control. See &v4l2-queryctrl;.</entry>
244 </row>
245 </tbody>
246 </tgroup>
247 </table>
248
249 <table pgwide="1" frame="none" id="changes-flags">
250 <title>Changes</title>
251 <tgroup cols="3">
252 &cs-def;
253 <tbody valign="top">
254 <row>
255 <entry><constant>V4L2_EVENT_CTRL_CH_VALUE</constant></entry>
256 <entry>0x0001</entry>
257 <entry>This control event was triggered because the value of the control
258 changed. Special case: if a button control is pressed, then this
259 event is sent as well, even though there is not explicit value
260 associated with a button control.</entry>
261 </row>
262 <row>
263 <entry><constant>V4L2_EVENT_CTRL_CH_FLAGS</constant></entry>
264 <entry>0x0002</entry>
265 <entry>This control event was triggered because the control flags
266 changed.</entry>
267 </row>
268 </tbody>
269 </tgroup>
270 </table>
271
Sakari Ailusdd966082010-03-27 10:58:24 -0300272 </refsect1>
273</refentry>
274<!--
275Local Variables:
276mode: sgml
277sgml-parent-document: "v4l2.sgml"
278indent-tabs-mode: nil
279End:
280-->