Allow to set -camera-vflip and -camera-hflip

This commit is contained in:
Kamil Trzcinski
2022-08-24 17:48:55 +02:00
parent 8b1d066dfc
commit a9c65fae0d
9 changed files with 61 additions and 3 deletions

View File

@ -24,6 +24,14 @@ typedef struct camera_options_s {
float low_res_factor;
bool auto_focus;
unsigned auto_reconnect;
union {
bool vflip;
unsigned vflip_align;
};
union {
bool hflip;
unsigned hflip_align;
};
char options[CAMERA_OPTIONS_LENGTH];
bool list_options;