Age | Commit message (Expand) | Author |
2022-07-02 | Remove unused device poll functions. | Visa Hankala |
2022-04-06 | constify struct cfattach | Christian Weisgerber |
2022-03-21 | Constify struct {audio,midi,radio,video}_hw_if. No functional change. | Miod Vallat |
2021-02-17 | Unify unit initialization. | Marcus Glocker |
2021-02-17 | If the device driver open call fails, don't set sc_open since in that case | Marcus Glocker |
2021-02-17 | Call 'struct process' parameters 'pr' to distinguish from 'struct proc' | Marcus Glocker |
2021-02-17 | Collect return code of video_stop() for ioctls calls. | Marcus Glocker |
2021-02-16 | Introduce debug levels since the current debug output is too noisy by | Marcus Glocker |
2021-02-16 | Enable multiple opens of a video(4) device as described in the V4L2 | Marcus Glocker |
2021-01-31 | Spacing. | Marcus Glocker |
2021-01-06 | Let a process open a video(4) device multiple times | Jeremie Courreges-Anglas |
2020-12-28 | Analog to the the kern.audio.record sysctl parameter for audio(4) | Marcus Glocker |
2020-12-25 | Refactor klist insertion and removal | Visa Hankala |
2020-05-16 | Implement kqueue(2) support. | Martin Pieuchot |
2020-01-16 | Free data structures after closing the pseudo-device with vdevgone(9). | Martin Pieuchot |
2019-10-06 | tsleep(9) to tsleep_nsec(9) conversion | Martin Pieuchot |
2017-10-11 | Fix debug printf, from Dave Voutila. | Martin Pieuchot |
2016-07-03 | Move videovar.h in to video.c since it isn't used anywhere else. | Marcus Glocker |
2016-06-01 | New USB device driver for Audio/Video capture devices based on the | Marcus Glocker |
2016-02-08 | Convert to uiomove. From Martin Natano. | Stefan Kempf |
2015-08-29 | video sub-drivers will not return EINVAL in size variable. (Well, | Theo de Raadt |
2015-07-17 | add missing braces to only call selrecord when intended to | Jonathan Gray |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat |
2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. | Ted Unangst |
2014-10-18 | Add VIDIOC_G_INPUT ioctl, some ports need it (at least ffmpeg) | Jonathan Armani |
2014-09-14 | remove uneeded proc.h includes | Jonathan Gray |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
2014-03-28 | Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of | Martin Pieuchot |
2011-07-03 | Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thing | Matthew Dempsky |
2011-03-26 | support VIDIOC_S_PARM and VIDIOC_G_PARM. these ioctls are used for | Jacob Meuser |
2010-12-26 | Kill pmap_phys_address(), and force every driver's mmap() routine to return | Miod Vallat |
2010-07-14 | implement poll() for video(4) | Jacob Meuser |
2009-10-13 | Get rid of devact enum, substitute it with an int and coresponding defines. | Paul Irofti |
2008-11-11 | Spacing. | Marcus Glocker |
2008-08-24 | Add support for processing unit (e.g. brightness) controls. New V4L2 | Marcus Glocker |
2008-08-13 | Add VIDIOC_ENUM_FRAMESIZES ioctl. This permits applications to query the | Marcus Glocker |
2008-07-31 | - Don't relay on bFormatIndex as an internal array index, since this | Marcus Glocker |
2008-07-26 | Since we are able to change the device image resolution on the fly in the | Marcus Glocker |
2008-07-23 | If /dev/video* is already used by an application, return EBUSY to other | Marcus Glocker |
2008-07-19 | In interrupt handler change printf -> DRPINTF. | Marcus Glocker |
2008-06-13 | Remove DEBUG #undef's we can turn it on/off in GENERIC like for all | Marcus Glocker |
2008-06-13 | Add myself to the copyright since i fumbled around in those files, too. | Marcus Glocker |
2008-06-12 | disable debug printfs and descriptor dumps | Robert Nagy |
2008-06-12 | Wrap DPRINTF around #ifdef VIDEO_DEBUG, but leave debugging on by | Marcus Glocker |
2008-06-11 | implement the VIDIOC_STREAMOFF ioctl and remove some unused code | Robert Nagy |
2008-06-10 | add VIDIOC_QUERYCTRL to the supported ioctls | Robert Nagy |
2008-06-09 | Let the driver switch between read() and mmap() depending on what | Marcus Glocker |
2008-06-09 | according to miod pmap_update() is not need after pmap_extract() at all, | Robert Nagy |
2008-06-09 | Allocate the video buffer based on the maximum frame size that's reported | Robert Nagy |