mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-07 07:20:01 +00:00
16 lines
251 B
C
16 lines
251 B
C
#ifndef __SENSOR_MODE_H__
|
|
#define __SENSOR_MODE_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
int width;
|
|
int height;
|
|
int bit_depth;
|
|
bool packed;
|
|
} sensor_mode_t;
|
|
|
|
bool sensor_mode_load(const char *encoded, sensor_mode_t **mode);
|
|
|
|
#endif
|