MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
stb_osd.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2008 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
30 #ifndef _STB_OSD_H
31 #define _STB_OSD_H
32 
33 #include "techtype.h"
34 #include "osdtype.h"
35 
36 /*---Constant and macro definitions for public use-----------------------------*/
37 
38 /*---Enumerations for public use-----------------------------------------------*/
39 
40 typedef enum e_blit_op
41 {
44 } E_BLIT_OP;
45 
46 /*---Global type defs for public use-------------------------------------------*/
47 
48 /*---Global Function prototypes for public use---------------------------------*/
49 
57 void STB_OSDMhegSetPalette(U16BIT index, U16BIT number, const U32BIT *argb);
58 
69 void* STB_OSDMhegSetResolution(U16BIT width, U16BIT height, U8BIT bits);
70 
71 
72 
88 void* STB_OSDMhegCreateSurface( U16BIT width, U16BIT height,
89  BOOLEAN init, U32BIT colour );
90 
91 
104 void* STB_OSDMhegLockBuffer( void *surface, U32BIT *pPitch );
105 
106 
112 void STB_OSDMhegUnlockBuffer( void *surface );
113 
114 
121 void STB_OSDMhegDestroySurface( void *surface );
122 
123 
143 void STB_OSDMhegBlitBitmap( void *surface, S_RECTANGLE *pRect, U32BIT pitch,
144  U16BIT screen_x, U16BIT screen_y, E_BLIT_OP bflg );
145 
146 
157 void STB_OSDMhegFillRectangle( S_RECTANGLE *pRect, U32BIT colour, E_BLIT_OP bflg );
158 
169 void STB_OSDMhegBlitStretch( S_RECTANGLE *pSrcRect, void *src_surf,
170  S_RECTANGLE *pDstRect, void *dst_surf, U8BIT alpha_blend );
171 
172 
183 void STB_OSDMhegFillSurface( void *surface, S_RECTANGLE *pRect, U32BIT colour,
184  E_BLIT_OP bflg );
185 
191 void STB_OSDMhegUpdate(void);
192 
193 
197 void STB_OSDMhegClear(void);
198 
199 
200 #endif /* _STB_OSD_H */
definition of OSD types
e_blit_op
Definition: stb_osd.h:40
Definition: osdtype.h:48
void STB_OSDMhegClear(void)
Clear MHEG's entire OSD.
void STB_OSDMhegFillRectangle(S_RECTANGLE *pRect, U32BIT colour, E_BLIT_OP bflg)
Draw a filled rectangle on OSD back buffer in the location given. Where pixel colour is less than fou...
void * STB_OSDMhegCreateSurface(U16BIT width, U16BIT height, BOOLEAN init, U32BIT colour)
Creates a hardware surface on which MHEG5 engine will draw an individual MHEG object. At its basic the function can just allocate the buffer to be returned by STB_OSDMhegLockBuffer(). It's size being: (width * height * bytes_per_pixel) Also, when 'init' is TRUE, function initialises surface buffer to the specified colour. For pixel colour format of less than four bytes, use least significant bits of 'colour'.
enum e_blit_op E_BLIT_OP
uint8_t U8BIT
Definition: techtype.h:93
void STB_OSDMhegBlitStretch(S_RECTANGLE *pSrcRect, void *src_surf, S_RECTANGLE *pDstRect, void *dst_surf, U8BIT alpha_blend)
Stretch blit bitmap data from source surface to destination surface using source and destination rect...
Definition: stb_osd.h:43
void * STB_OSDMhegSetResolution(U16BIT width, U16BIT height, U8BIT bits)
Sets the size of the OSD to be used by MHEG engine. The return may be NULL, or pointer to valid Surfa...
void STB_OSDMhegDestroySurface(void *surface)
This function destroys surface and all data allocated by STB_OSDMhegCreateSurface() ...
void STB_OSDMhegUpdate(void)
Commit OSD changes to the screen - changes given by previous calls to STB_OSDMhegDrawRectangle() and ...
uint16_t U16BIT
Definition: techtype.h:95
System Wide Global Technical Data Type Definitions.
void STB_OSDMhegSetPalette(U16BIT index, U16BIT number, const U32BIT *argb)
Sets Colour Palette array of up to 256 values, for single byte colour depth. This palette being an ar...
void STB_OSDMhegFillSurface(void *surface, S_RECTANGLE *pRect, U32BIT colour, E_BLIT_OP bflg)
Draw a filled rectangle on surface in the location given. Where pixel colour is less than four bytes...
void * STB_OSDMhegLockBuffer(void *surface, U32BIT *pPitch)
Converts hardware surface handle returned by STB_OSDMhegCreateSurface() to buffer address that the en...
U8BIT BOOLEAN
Definition: techtype.h:112
void STB_OSDMhegBlitBitmap(void *surface, S_RECTANGLE *pRect, U32BIT pitch, U16BIT screen_x, U16BIT screen_y, E_BLIT_OP bflg)
Render bitmap on OSD back buffer in the given screen location, with given operation. The bitmap is referenced 'surface' - a handle returned by STB_OSDMhegCreateSurface()
Definition: stb_osd.h:42
uint32_t U32BIT
Definition: techtype.h:97
void STB_OSDMhegUnlockBuffer(void *surface)
This function informs HW that MHEG5 is finished writing to the buffer.