vcam
vcam copied to clipboard
Virtual camera device driver for Linux
To crash the driver is enough to use fbset on the framebuffer device to change the resolution: `fbset -xres 1920 -yres 1080 -fb /dev/fb1` What should happen instead: if the...
I wrote the `test.c` as below ```c #include #include #include #include #include static char fb_path[128] = "/dev/fb1"; static int fd; void signal_exit_handler(int sig) { close(fd); exit(0); } int main() {...
Fix the wrong mod name In section `$ sudo modprobe -a videobuf2_vmalloc videobuf2_v4l2`, mod's name in kernel 5.19.0-42-generic, should use `-` to connect, not `_`. In root/drivers/media/Makefile line 32: `obj-y...
1. Rename `min_buffers_needed` member in `struct vb2_queue` to `min_queued_buffers` according to the changes in Linux v6.8. (The change described above in the Linux Kernel source code can be viewed at:...