30 #define HAS_TRANSPARENCY  0x00    31 #define COMPLETELY_OPAQUE 0x01    33 #define PIX_BYTES_PLT    1    34 #define PIX_BYTES_RGB    3    35 #define PIX_BYTES_ARGB   4    37 #define SD_METRIC_RESOLUTION        2835    38 #define HD_720_METRIC_RESOLUTION    3543    39 #define HD_1080_METRIC_RESOLUTION   5315   131    U32BIT i_width, U32BIT i_height,
   132    S_IMAGE *image, U32BIT *pitch );
 void DEC_FreeJpg(S_IMAGE *image)
Free memory allocated for JPEG bitmap. 
Definition: mg_jpg.c:500
 
void DEC_FreePng(S_IMAGE *image)
Free memory allocated for PNG bitmap. 
Definition: mg_png.c:639
 
S_IMAGE * DEC_DecodeJpg(U8BIT *data, U32BIT size)
Allocate memory for JPEG and decode bitmap To free "S_IMAGE" memory, DEC_FreeJpg will be called...
Definition: mg_jpg.c:329
 
System Wide Global Technical Data Type Definitions. 
 
S_IMAGE * DEC_DecodePng(U8BIT *data, U32BIT size)
Allocate memory for PNG and decode bitmap To free "S_IMAGE" memory, DEC_FreePng will be called...
Definition: mg_png.c:334
 
void * DEC_OSDCreateBmpSurf(U32BIT s_width, U32BIT s_height, U32BIT i_width, U32BIT i_height, S_IMAGE *image, U32BIT *pitch)
This creates a hardware surface of size using STB_OSDMhegCreateSurface() with s_width and s_height...
Definition: mg_bitmap.c:1397