mediamtx/internal/rpicamera/exe/window.h
Azsde 4841189456
Add support for libcamera Autofocus parameters (#1417)
* [DEV #1416] Add support for libcamera Autofocus parameters

* [DEVMINOR] Fix Go formatting

* [DEV] Support AF window parameter for rpiCamera

* [DEV] Update default .yml file to add rpiCameraAfWindow parameter
2023-02-10 12:20:50 +01:00

16 lines
220 B
C

#ifndef __WINDOW_H__
#define __WINDOW_H__
#include <stdbool.h>
typedef struct {
float x;
float y;
float width;
float height;
} window_t;
bool window_load(const char *encoded, window_t **mode);
#endif