d4565fa507
Clang Lint CI / lint-no-video (push) Successful in 56s
Clang Build CI / run-no-video (push) Successful in 59s
Clang Build CI / run-video (push) Successful in 1m15s
Clang Build CI / build-release (push) Successful in 2m23s
Clang Lint CI / lint-video (push) Successful in 2m14s
18 lines
321 B
C
18 lines
321 B
C
#include "types.h"
|
|
|
|
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#ifdef VIDEO_IN
|
|
|
|
void video_init(VideoCapture *video_capture, const char *name,
|
|
unsigned int preferred_height);
|
|
|
|
void *video_background_read(void *args);
|
|
|
|
void video_free(const VideoCapture *video_capture);
|
|
|
|
#endif /* VIDEO_IN */
|
|
|
|
#endif /* VIDEO_H */
|