summaryrefslogtreecommitdiff
path: root/sys/dev/videovar.h
AgeCommit message (Collapse)Author
2010-07-14implement poll() for video(4)Jacob Meuser
ok mglocker
2008-07-23If /dev/video* is already used by an application, return EBUSY to otherMarcus Glocker
applications. Fixes a kernel panic. Reported by ian@
2008-06-13Add myself to the copyright since i fumbled around in those files, too.Marcus Glocker
OK robert@
2008-06-09Let the driver switch between read() and mmap() depending on whatMarcus Glocker
the userland application wants. OK robert@
2008-05-25Spacing. Comments. strncpy() -> strlcpy().Marcus Glocker
2008-05-24- Enable userland to read(2) video stream from /dev/video.Marcus Glocker
- Prepare for mmap(2).
2008-04-09Initial import for uvideo(4) and video(4):Robert Nagy
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@