summaryrefslogtreecommitdiffstats
path: root/sys/dev/videovar.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video sub-drivers will not return EINVAL in size variable. (Well,deraadt2015-08-291-1/+2
| | | | | a broken USB driver could, then what happens?) 0 is the right error. Also, keep track the size for free()
* implement poll() for video(4)jakemsr2010-07-141-2/+8
| | | | ok mglocker
* If /dev/video* is already used by an application, return EBUSY to othermglocker2008-07-231-1/+3
| | | | | | applications. Fixes a kernel panic. Reported by ian@
* Add myself to the copyright since i fumbled around in those files, too.mglocker2008-06-131-1/+2
| | | | OK robert@
* Let the driver switch between read() and mmap() depending on whatmglocker2008-06-091-1/+2
| | | | | | the userland application wants. OK robert@
* Spacing. Comments. strncpy() -> strlcpy().mglocker2008-05-251-8/+8
|
* - Enable userland to read(2) video stream from /dev/video.mglocker2008-05-241-1/+4
| | | | - Prepare for mmap(2).
* Initial import for uvideo(4) and video(4):robert2008-04-091-0/+29
uvideo(4) is a driver for USB video device class devices including webcams, camcorders and other cameras. video(4) is a device-independent layer that implements the V4L2 (Video for Linux Two) API. These drivers are *really* work in progress so don't even try to use them just yet, because the driver still has some issues, even if it can be used to capture simple MJPEG videos. ok mglocker@, deraadt@