MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
|
Definition of colour type for MHEG5 - settings and conversions. More...
Go to the source code of this file.
Data Structures | |
struct | S_MHEG_OSD_COLOUR_MAP |
Macros | |
#define | DEFAULTTEXTCOLOR "\xff\xff\xff\x00", 4 |
#define | TRANSPARENTCOLOR "\xff\xff\xff\xff", 4 |
#define | BLACKCOLOR "\x00\x00\x00\x00", 4 |
#define | DEFAULTSLIDERCOLOR "\xff\xff\xff\x00", 4 |
#define | DEFAULTBUTTONCOLOR "\x50\x50\x50\x00", 4 |
#define | DEFAULTHIGHLIGHTCOLOR "\xff\xff\xff\x00", 4 |
#define | DEFAULTDESKTOPCOLOUR "\x00\x00\x00\x00", 4 |
#define | RGB(r, g, b) (0xff000000 | ((r) << 16) | ((g) << 8) | (b)) |
#define | RGBT(r, g, b, t) ((((t) ^ 0xff) << 24) | ((r) << 16) | ((g) << 8) | (b)) |
#define | GetRValue(osdcolour) (((osdcolour) >> 16) & 0xff) |
#define | GetGValue(osdcolour) (((osdcolour) >> 8) & 0xff) |
#define | GetBValue(osdcolour) ((osdcolour) & 0xff) |
#define | GetTValue(osdcolour) (((osdcolour) >> 24) ^ 0xff) |
#define | GetAValue(osdcolour) ((osdcolour) >> 24) |
#define | GetYValue(red, green, blue) ((U8BIT) (((77 * red + 150 * green + 29 * blue) / 256))) |
#define | GetCBValue(red, green, blue) ((U8BIT)((-44 * red - 87 * green + 131 * blue) / 256 + 128)) |
#define | GetCRValue(red, green, blue) ((U8BIT)((131 * red - 110 * green - 21 * blue) / 256 + 128)) |
#define | GetMixValue(transparency) ((255 - transparency) / (255 / 63)) |
#define | DESKTOP_COLOUR (RGBT(0, 0, 0, 0)) |
#define | FULLY_TRANSPARENT (RGBT(0, 0, 0, 255)) |
Functions | |
OSDColor | OSDgetColour (const char *colour, int len) |
Converts an MHEG5 colour value to an OSDColor type. More... | |
MHEG5String | OSDsetColour (OSDColor colour) |
Converts an OSDColor type into an MHEG5 colour value For UK1 profile only RGBTCOLOR is defined. More... | |
Definition of colour type for MHEG5 - settings and conversions.
#define BLACKCOLOR "\x00\x00\x00\x00", 4 |
#define DEFAULTBUTTONCOLOR "\x50\x50\x50\x00", 4 |
#define DEFAULTDESKTOPCOLOUR "\x00\x00\x00\x00", 4 |
#define DEFAULTHIGHLIGHTCOLOR "\xff\xff\xff\x00", 4 |
#define DEFAULTSLIDERCOLOR "\xff\xff\xff\x00", 4 |
#define DEFAULTTEXTCOLOR "\xff\xff\xff\x00", 4 |
#define DESKTOP_COLOUR (RGBT(0, 0, 0, 0)) |
#define FULLY_TRANSPARENT (RGBT(0, 0, 0, 255)) |
#define GetAValue | ( | osdcolour | ) | ((osdcolour) >> 24) |
#define GetBValue | ( | osdcolour | ) | ((osdcolour) & 0xff) |
#define GetCBValue | ( | red, | |
green, | |||
blue | |||
) | ((U8BIT)((-44 * red - 87 * green + 131 * blue) / 256 + 128)) |
#define GetCRValue | ( | red, | |
green, | |||
blue | |||
) | ((U8BIT)((131 * red - 110 * green - 21 * blue) / 256 + 128)) |
#define GetGValue | ( | osdcolour | ) | (((osdcolour) >> 8) & 0xff) |
#define GetMixValue | ( | transparency | ) | ((255 - transparency) / (255 / 63)) |
#define GetRValue | ( | osdcolour | ) | (((osdcolour) >> 16) & 0xff) |
#define GetTValue | ( | osdcolour | ) | (((osdcolour) >> 24) ^ 0xff) |
#define GetYValue | ( | red, | |
green, | |||
blue | |||
) | ((U8BIT) (((77 * red + 150 * green + 29 * blue) / 256))) |
#define RGB | ( | r, | |
g, | |||
b | |||
) | (0xff000000 | ((r) << 16) | ((g) << 8) | (b)) |
#define RGBT | ( | r, | |
g, | |||
b, | |||
t | |||
) | ((((t) ^ 0xff) << 24) | ((r) << 16) | ((g) << 8) | (b)) |
#define TRANSPARENTCOLOR "\xff\xff\xff\xff", 4 |
enum E_MHEG_COLOURS |
OSDColor OSDgetColour | ( | const char * | colour, |
int | len | ||
) |
Converts an MHEG5 colour value to an OSDColor type.
colour | Pointer to an array of bytes that specify the MHEG5 colour |
len | Length of the colour parameter |
Converts an MHEG5 colour value to an OSDColor type.
colour | Pointer to an array of bytes that specify the MHEG5 colour |
len | Length of the colour parameter |
MHEG5String OSDsetColour | ( | OSDColor | colour | ) |
Converts an OSDColor type into an MHEG5 colour value For UK1 profile only RGBTCOLOR is defined.
colour | OSDColor to convert |