wip video device

This commit is contained in:
2025-09-21 23:31:09 +02:00
parent 432f05cc56
commit 616b2af44b
6 changed files with 78 additions and 47 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ static void init_devices(char *video_in[MAX_VIDEO], unsigned int video_count) {
devices = malloc(video_count * sizeof(VideoDevice));
for (i = 0; i < video_count; i++) {
devices[i] = video_init(video_in[i], 640, 480); // TODO define in args
devices[i] = video_init(video_in[i], 320, 240); // TODO define in args
}
}