Add camera_t

This commit is contained in:
Kamil Trzcinski
2022-04-05 09:17:57 +02:00
parent 0dd713fcaa
commit 94df5c155c
9 changed files with 314 additions and 175 deletions

View File

@ -2,7 +2,9 @@
#include "v4l2.h"
typedef void (*link_on_buffer)(struct buffer_s *buf);
typedef struct buffer_s buffer_t;
typedef void (*link_on_buffer)(buffer_t *buf);
typedef bool (*link_check_streaming)();
typedef struct link_s {