Clang Build CI / build-release (push) Failing after 54s
Clang Build CI / run-video (push) Successful in 1m12s
Clang Lint CI / lint-no-video (push) Successful in 1m12s
Clang Build CI / run-no-video (push) Successful in 1m17s
Clang Lint CI / lint-video (push) Successful in 4m33s
19 lines
406 B
C
19 lines
406 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, unsigned int buffer_count,
|
|
const char *video_fourcc, bool log_error);
|
|
|
|
void *video_background_read(void *args);
|
|
|
|
void video_free(const VideoCapture *video_capture);
|
|
|
|
#endif /* VIDEO_IN */
|
|
|
|
#endif /* VIDEO_H */
|