MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
|
The functions in this file are OPTIONALLY provided by Receiver Platform *. More...
#include "techtype.h"
Go to the source code of this file.
Data Structures | |
struct | s_image |
Macros | |
#define | HAS_TRANSPARENCY 0x00 |
#define | COMPLETELY_OPAQUE 0x01 |
#define | PIX_BYTES_PLT 1 |
#define | PIX_BYTES_RGB 3 |
#define | PIX_BYTES_ARGB 4 |
#define | SD_METRIC_RESOLUTION 2835 |
#define | HD_720_METRIC_RESOLUTION 3543 |
#define | HD_1080_METRIC_RESOLUTION 5315 |
Typedefs | |
typedef struct s_image | S_IMAGE |
Functions | |
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. More... | |
void | DEC_FreePng (S_IMAGE *image) |
Free memory allocated for PNG bitmap. More... | |
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. More... | |
void | DEC_FreeJpg (S_IMAGE *image) |
Free memory allocated for JPEG bitmap. More... | |
void * | DEC_OSDCreateBmpSurf (U32BIT s_width, U32BIT s_height, U32BIT i_width, U32BIT i_height, S_IMAGE *image, U32BIT *pitch, int *tiled) |
This creates a hardware surface of size using STB_OSDMhegCreateSurface() with s_width and s_height, and fills the surface with the IMAGE data. The bitmap must be stretched or shrunk onto surface with image size (i_width,i_height) When surface size is greater than image size, then the bitmap is 'tiled' to fill the surface. Otherwise sizes will be equal. Implementations may choose to ignore requested surface size and leave MHEG5 to do the tiling (where graphic memory is limited). If so, 'tiled' should be set to FALSE, and use (i_width,i_height) for surface size. Colour format of resulting surface is as used in the call to MHEG5_Open() with 'ColourDepth' in setup config. More... | |
The functions in this file are OPTIONALLY provided by Receiver Platform *.
#define COMPLETELY_OPAQUE 0x01 |
#define HAS_TRANSPARENCY 0x00 |
#define HD_1080_METRIC_RESOLUTION 5315 |
#define HD_720_METRIC_RESOLUTION 3543 |
#define PIX_BYTES_ARGB 4 |
#define PIX_BYTES_PLT 1 |
#define PIX_BYTES_RGB 3 |
#define SD_METRIC_RESOLUTION 2835 |
Allocate memory for JPEG and decode bitmap To free "S_IMAGE" memory, DEC_FreeJpg will be called.
data | JPEG data object |
size | Size of JPEG data in bytes. |
Allocate memory for JPEG and decode bitmap To free "S_IMAGE" memory, DEC_FreeJpg will be called.
void | * data JPG data. int len Length of data for JPG. |
Allocate memory for PNG and decode bitmap To free "S_IMAGE" memory, DEC_FreePng will be called.
data | PNG data object |
size | Size of PNG data in bytes. |
Allocate memory for PNG and decode bitmap To free "S_IMAGE" memory, DEC_FreePng will be called.
void | * data PNG data. int len Length of data for PNG. |
void DEC_FreeJpg | ( | S_IMAGE * | image | ) |
Free memory allocated for JPEG bitmap.
data | JPG image |
void DEC_FreePng | ( | S_IMAGE * | image | ) |
Free memory allocated for PNG bitmap.
data | PNG image |
void* DEC_OSDCreateBmpSurf | ( | U32BIT | s_width, |
U32BIT | s_height, | ||
U32BIT | i_width, | ||
U32BIT | i_height, | ||
S_IMAGE * | image, | ||
U32BIT * | pitch, | ||
int * | tiled | ||
) |
This creates a hardware surface of size using STB_OSDMhegCreateSurface() with s_width and s_height, and fills the surface with the IMAGE data. The bitmap must be stretched or shrunk onto surface with image size (i_width,i_height) When surface size is greater than image size, then the bitmap is 'tiled' to fill the surface. Otherwise sizes will be equal. Implementations may choose to ignore requested surface size and leave MHEG5 to do the tiling (where graphic memory is limited). If so, 'tiled' should be set to FALSE, and use (i_width,i_height) for surface size. Colour format of resulting surface is as used in the call to MHEG5_Open() with 'ColourDepth' in setup config.
s_width | Width of requested surface in pixels |
s_height | Height of requested surface in pixels |
i_width | Width of image on surface in pixels |
i_height | Height of image on surface in pixels |
image | image structure returned by DEC_DecodePNG() or DEC_DecodeJPG() |
pitch | width of returned buffer in bytes. |