mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-13 18:24:58 +00:00
4841189456
* [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
16 lines
220 B
C
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
|