rename device -> video capture

This commit is contained in:
2025-09-22 22:26:24 +02:00
parent 8bfcbfa128
commit 12565aab08
7 changed files with 192 additions and 174 deletions
+3 -3
View File
@@ -3,10 +3,10 @@
#ifndef VIDEO_H
#define VIDEO_H
VideoDevice video_init(char *name, unsigned int preferred_height);
VideoCapture video_init(char *name, unsigned int preferred_height);
void video_background_read(VideoDevice *device, bool *stop);
void video_background_read(VideoCapture *video_capture, bool *stop);
void video_free(VideoDevice device);
void video_free(VideoCapture video_capture);
#endif /* VIDEO_H */