forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v4l_for_2.6.35' of git://git.kernel.org/pub/scm/linux/k…
…ernel/git/mchehab/linux-2.6 * 'v4l_for_2.6.35' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (534 commits) V4L/DVB (13554a): v4l: Use the video_drvdata function in drivers V4L/DVB: vivi and mem2mem_testdev need slab.h to build V4L/DVB: tm6000: bugfix image position V4L/DVB: IR/imon: remove dead IMON_KEY_RELEASE_OFFSET V4L/DVB: tm6000: README - add vbi V4L/DVB: Fix unlock logic at medusa_video_init V4L/DVB: fix dvb frontend lockup V4L/DVB: s2255drv: remove dead code V4L/DVB: s2255drv: return if vdev not found V4L/DVB: ov511: cleanup: remove unneeded null check V4L/DVB: media/mem2mem: dereferencing free memory V4L/DVB: media/IR: Add missing include file to rc-map.c V4L/DVB: dvb/stv6110x: cleanup error handling V4L/DVB: ngene: Add lgdt3303 and mt2131 deps to Kconfig V4L/DVB: ngene: start separating out DVB functions into separate file V4L/DVB: ngene: split out card specific code into a separate file V4L/DVB: ngene: split out i2c code into a separate file V4L/DVB: ngene: add initial support for digital side of Avermedia m780 V4L/DVB: ngene: properly support boards where channel 0 isn't a TS input V4L-DVB: ngene: make sure that tuner headers are included ...
- Loading branch information
Showing
387 changed files
with
36,270 additions
and
11,937 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<title>Event Interface</title> | ||
|
||
<para>The V4L2 event interface provides means for user to get | ||
immediately notified on certain conditions taking place on a device. | ||
This might include start of frame or loss of signal events, for | ||
example. | ||
</para> | ||
|
||
<para>To receive events, the events the user is interested in first must | ||
be subscribed using the &VIDIOC-SUBSCRIBE-EVENT; ioctl. Once an event is | ||
subscribed, the events of subscribed types are dequeueable using the | ||
&VIDIOC-DQEVENT; ioctl. Events may be unsubscribed using | ||
VIDIOC_UNSUBSCRIBE_EVENT ioctl. The special event type V4L2_EVENT_ALL may | ||
be used to unsubscribe all the events the driver supports.</para> | ||
|
||
<para>The event subscriptions and event queues are specific to file | ||
handles. Subscribing an event on one file handle does not affect | ||
other file handles. | ||
</para> | ||
|
||
<para>The information on dequeueable events is obtained by using select or | ||
poll system calls on video devices. The V4L2 events use POLLPRI events on | ||
poll system call and exceptions on select system call. </para> | ||
|
||
<!-- | ||
Local Variables: | ||
mode: sgml | ||
sgml-parent-document: "v4l2.sgml" | ||
indent-tabs-mode: nil | ||
End: | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.