diff options
author | pommicket <pommicket@gmail.com> | 2025-02-25 14:41:59 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-02-25 15:16:09 -0500 |
commit | 5626363c05bd379047cbe102feaceb18a04a738c (patch) | |
tree | 5e9599171fc38a61f1f53988627013b289377f1e /camera.h | |
parent | 9b90ceee792cb51917af474ddcbc47edaacff16b (diff) |
start logger
Diffstat (limited to 'camera.h')
-rw-r--r-- | camera.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -100,6 +100,9 @@ static bool hash_eq(Hash h1, Hash h2) { return memcmp(h1.hash, h2.hash, sizeof h1.hash) == 0; } +#define HASH_STR_SIZE (2 * HASH_SIZE + 1) + +void hash_to_str(Hash h, char str[HASH_STR_SIZE]); void camera_init(const GlProcs *procs); bool pix_fmt_supported(uint32_t pixfmt); int picture_format_cmp_resolution(const PictureFormat *a, const PictureFormat *b); @@ -128,7 +131,7 @@ void camera_close(Camera *camera); void cameras_from_device(const char *dev_path, const char *serial, Camera ***cameras); bool camera_open(Camera *camera, PictureFormat desired_format, int desired_framerate); Hash camera_hash(Camera *camera); -void camera_hash_str(Camera *camera, char str[HASH_SIZE * 2 + 1]); +void camera_hash_str(Camera *camera, char str[HASH_STR_SIZE]); bool camera_set_format(Camera *camera, PictureFormat picfmt, int desired_framerate, CameraAccessMethod access, bool force); /// Copy current frame from camera to AVFrame. /// |