mirror of
https://github.com/bluenviron/mediamtx
synced 2025-02-03 13:13:00 +00:00
16 lines
205 B
C
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
|