mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-23 12:42:02 +00:00
FS-10080
This commit is contained in:
committed by
Anthony Minessale
parent
a9e2346f86
commit
2bd0ff45f4
@@ -80,12 +80,21 @@ typedef struct switch_yuv_color_s {
|
||||
uint8_t v;
|
||||
} switch_yuv_color_t;
|
||||
|
||||
#if SWITCH_BYTE_ORDER == __BIG_ENDIAN
|
||||
typedef struct switch_rgb_color_s {
|
||||
uint8_t a;
|
||||
uint8_t r;
|
||||
uint8_t g;
|
||||
uint8_t b;
|
||||
} switch_rgb_color_t;
|
||||
#else
|
||||
typedef struct switch_rgb_color_s {
|
||||
uint8_t b;
|
||||
uint8_t g;
|
||||
uint8_t r;
|
||||
uint8_t a;
|
||||
} switch_rgb_color_t;
|
||||
#endif
|
||||
|
||||
typedef struct switch_hsl_color_s {
|
||||
double h;
|
||||
|
||||
Reference in New Issue
Block a user