mediamtx/internal/rpicamera/exe/roi.h

16 lines
205 B
C

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