Remove dependency on output_list and capture_list to create a pipeline

This commit is contained in:
Kamil Trzcinski
2022-04-11 21:50:48 +02:00
parent 4497c91ae8
commit d7c263bae9
11 changed files with 160 additions and 154 deletions

View File

@ -38,6 +38,13 @@ typedef struct camera_options_s {
} h264;
} camera_options_t;
typedef struct camera_pipeline_s {
int index;
buffer_list_t *capture;
unsigned width, height, format;
float res_factor;
} camera_pipeline_t;
typedef struct camera_s {
const char *name;