chore: reduce debt with const values

This commit is contained in:
2025-11-10 16:29:11 +01:00
parent 1c737f4ac6
commit 5532cbf53e
20 changed files with 123 additions and 104 deletions
+2 -2
View File
@@ -3,12 +3,12 @@
#ifndef VIDEO_H
#define VIDEO_H
void video_init(VideoCapture *video_capture, char *name,
void video_init(VideoCapture *video_capture, const char *name,
unsigned int preferred_height);
bool video_background_read(VideoCapture *video_capture, SharedContext *context,
int input_index, bool trace_fps);
void video_free(VideoCapture *video_capture);
void video_free(const VideoCapture *video_capture);
#endif /* VIDEO_H */