blob: 975f603a42eeed9faa6bd816ba1bee83ed3438fa [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.
103 This event has &v4l2-event-vsync; associated with it.
104 </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.
121 This event has &v4l2-event-ctrl; associated with it. This struct
122 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.
129 </entry>
130 </row>
131 <row>
Sakari Ailusdd966082010-03-27 10:58:24 -0300132 <entry><constant>V4L2_EVENT_PRIVATE_START</constant></entry>
133 <entry>0x08000000</entry>
134 <entry>Base event number for driver-private events.</entry>
135 </row>
136 </tbody>
137 </tgroup>
138 </table>
139
Hans Verkuil85724982011-06-07 09:53:37 -0300140 <table pgwide="1" frame="none" id="event-flags">
141 <title>Event Flags</title>
142 <tgroup cols="3">
143 &cs-def;
144 <tbody valign="top">
145 <row>
146 <entry><constant>V4L2_EVENT_SUB_FL_SEND_INITIAL</constant></entry>
147 <entry>0x0001</entry>
148 <entry>When this event is subscribed an initial event will be sent
149 containing the current status. This only makes sense for events
150 that are triggered by a status change. Other events will ignore
151 this flag.</entry>
152 </row>
153 </tbody>
154 </tgroup>
155 </table>
156
Hans Verkuil0e1de382010-03-27 14:10:57 -0300157 <table frame="none" pgwide="1" id="v4l2-event-vsync">
158 <title>struct <structname>v4l2_event_vsync</structname></title>
159 <tgroup cols="3">
160 &cs-str;
161 <tbody valign="top">
162 <row>
163 <entry>__u8</entry>
164 <entry><structfield>field</structfield></entry>
165 <entry>The upcoming field. See &v4l2-field;.</entry>
166 </row>
167 </tbody>
168 </tgroup>
169 </table>
170
Hans Verkuil85724982011-06-07 09:53:37 -0300171 <table frame="none" pgwide="1" id="v4l2-event-ctrl">
172 <title>struct <structname>v4l2_event_ctrl</structname></title>
173 <tgroup cols="4">
174 &cs-str;
175 <tbody valign="top">
176 <row>
177 <entry>__u32</entry>
178 <entry><structfield>changes</structfield></entry>
179 <entry></entry>
180 <entry>A bitmask that tells what has changed. See <xref linkend="changes-flags" />.</entry>
181 </row>
182 <row>
183 <entry>__u32</entry>
184 <entry><structfield>type</structfield></entry>
185 <entry></entry>
186 <entry>The type of the control. See &v4l2-ctrl-type;.</entry>
187 </row>
188 <row>
189 <entry>union (anonymous)</entry>
190 <entry></entry>
191 <entry></entry>
192 <entry></entry>
193 </row>
194 <row>
195 <entry></entry>
196 <entry>__s32</entry>
197 <entry><structfield>value</structfield></entry>
198 <entry>The 32-bit value of the control for 32-bit control types.
199 This is 0 for string controls since the value of a string
200 cannot be passed using &VIDIOC-DQEVENT;.</entry>
201 </row>
202 <row>
203 <entry></entry>
204 <entry>__s64</entry>
205 <entry><structfield>value64</structfield></entry>
206 <entry>The 64-bit value of the control for 64-bit control types.</entry>
207 </row>
208 <row>
209 <entry>__u32</entry>
210 <entry><structfield>flags</structfield></entry>
211 <entry></entry>
212 <entry>The control flags. See <xref linkend="control-flags" />.</entry>
213 </row>
214 <row>
215 <entry>__s32</entry>
216 <entry><structfield>minimum</structfield></entry>
217 <entry></entry>
218 <entry>The minimum value of the control. See &v4l2-queryctrl;.</entry>
219 </row>
220 <row>
221 <entry>__s32</entry>
222 <entry><structfield>maximum</structfield></entry>
223 <entry></entry>
224 <entry>The maximum value of the control. See &v4l2-queryctrl;.</entry>
225 </row>
226 <row>
227 <entry>__s32</entry>
228 <entry><structfield>step</structfield></entry>
229 <entry></entry>
230 <entry>The step value of the control. See &v4l2-queryctrl;.</entry>
231 </row>
232 <row>
233 <entry>__s32</entry>
234 <entry><structfield>default_value</structfield></entry>
235 <entry></entry>
236 <entry>The default value value of the control. See &v4l2-queryctrl;.</entry>
237 </row>
238 </tbody>
239 </tgroup>
240 </table>
241
242 <table pgwide="1" frame="none" id="changes-flags">
243 <title>Changes</title>
244 <tgroup cols="3">
245 &cs-def;
246 <tbody valign="top">
247 <row>
248 <entry><constant>V4L2_EVENT_CTRL_CH_VALUE</constant></entry>
249 <entry>0x0001</entry>
250 <entry>This control event was triggered because the value of the control
251 changed. Special case: if a button control is pressed, then this
252 event is sent as well, even though there is not explicit value
253 associated with a button control.</entry>
254 </row>
255 <row>
256 <entry><constant>V4L2_EVENT_CTRL_CH_FLAGS</constant></entry>
257 <entry>0x0002</entry>
258 <entry>This control event was triggered because the control flags
259 changed.</entry>
260 </row>
261 </tbody>
262 </tgroup>
263 </table>
264
Sakari Ailusdd966082010-03-27 10:58:24 -0300265 </refsect1>
266</refentry>
267<!--
268Local Variables:
269mode: sgml
270sgml-parent-document: "v4l2.sgml"
271indent-tabs-mode: nil
272End:
273-->