31 #if defined(OSD_16_BIT) || defined(OSD_31_BIT) || defined(OSD_32_BIT)
32 #define MULTIPLE_COLOUR_FORMATS
34 #elif defined(OSD_16_BIT)
35 #if defined(OSD_31_BIT) || defined(OSD_32_BIT)
36 #define MULTIPLE_COLOUR_FORMATS
38 #elif defined(OSD_31_BIT) && defined(OSD_32_BIT)
39 #define MULTIPLE_COLOUR_FORMATS
42 #if defined(OSD_31_BIT)
43 #if defined(OSD_32_BIT)
44 #define MAX_ALPHA mg_ctxt.max_alpha
46 #define MAX_ALPHA 0x80
48 #define CalcAlpha(a) (((a) * MAX_ALPHA) / 255)
49 #define AlphaCalc(a) (((a) * 255) / MAX_ALPHA)
50 #define ConvertAlpha(oc, nc) nc = CalcAlpha(oc >> 24); nc <<= 24; nc |= oc & 0x00ffffff;
51 #define AlphaPlatform(oc) (oc == 0) ? 0 : (CalcAlpha(oc >> 24) << 24) | (oc & 0x00ffffff)
52 #define AlphaStandard(oc) (oc == 0) ? 0 : (AlphaCalc(oc >> 24) << 24) | (oc & 0x00ffffff)
53 #elif defined(OSD_32_BIT)
54 #define MAX_ALPHA 0xff
55 #define CalcAlpha(a) a
56 #define ConvertAlpha(oc, nc) nc = oc;
57 #define AlphaPlatform(oc) oc
58 #define AlphaStandard(oc) oc
61 #ifdef MULTIPLE_COLOUR_FORMATS
62 #define IF_COL_DEPTH(cd) if (mg_ctxt.colour_format == cd)
65 #define IF_COL_DEPTH(cd)
69 #define BytesPerPixel(cf) ((cf + 7) >> 3)
94 #if defined(OSD_31_BIT) && defined(OSD_32_BIT)
101 #define HD_W_SCALEUP(w) (((S32BIT)(w) * mg_ctxt.line_w.mlt) / mg_ctxt.line_w.div)
103 #define HD_X_SCALEUP(x) (((S32BIT)(x) * mg_ctxt.osd_x.mlt) / mg_ctxt.osd_x.div)
105 #define HD_Y_SCALEUP(y) (((S32BIT)(y) * mg_ctxt.osd_y.mlt) / mg_ctxt.osd_y.div)
U16BIT out_osd_width
Definition: mg_ctxt.h:81
U16BIT input_width
Definition: mg_ctxt.h:83
U16BIT input_height
Definition: mg_ctxt.h:84
struct _MGContext S_MGContext
U8BIT colour_format
Definition: mg_ctxt.h:93
void * hw_handle
Definition: mg_ctxt.h:90
uint8_t U8BIT
Definition: techtype.h:93
void * screen_buff
Definition: mg_ctxt.h:91
U16BIT out_osd_height
Definition: mg_ctxt.h:82
S_RATIO vid_y
Definition: mg_ctxt.h:88
This file provides the control interface for MHEG5 engine. The use of this component MUST comply with...
U16BIT out_video_width
Definition: mg_ctxt.h:79
S_MGContext mg_ctxt
Definition: mg_osd.c:143
uint16_t U16BIT
Definition: techtype.h:95
U16BIT out_video_height
Definition: mg_ctxt.h:80
S_RATIO osd_y
Definition: mg_ctxt.h:86
S_RATIO vid_x
Definition: mg_ctxt.h:87
S_RATIO osd_x
Definition: mg_ctxt.h:85
S_RATIO line_w
Definition: mg_ctxt.h:89
U16BIT mlt
Definition: mg_ctxt.h:73
U32BIT screen_stride
Definition: mg_ctxt.h:92
uint32_t U32BIT
Definition: techtype.h:97
U16BIT div
Definition: mg_ctxt.h:74