mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-07 07:20:01 +00:00
23 lines
468 B
C
23 lines
468 B
C
#ifndef __CAMERA_H__
|
|
#define __CAMERA_H__
|
|
|
|
typedef void camera_t;
|
|
|
|
typedef void (*camera_frame_cb)(int buffer_fd, uint64_t size, uint64_t timestamp);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *camera_get_error();
|
|
bool camera_create(parameters_t *params, camera_frame_cb frame_cb, camera_t **cam);
|
|
int camera_get_mode_stride(camera_t *cam);
|
|
int camera_get_mode_colorspace(camera_t *cam);
|
|
bool camera_start(camera_t *cam);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|