MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mheg5_control.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2012 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  *******************************************************************************/
50 #ifndef _MHEG5_CONTROL_H
51 #define _MHEG5_CONTROL_H
52 
53 #include "techtype.h"
54 #include "dvblocator.h"
55 #include "mherrors.h"
56 #include "mheg5_version.h"
57 
58 /*---Constant and macro definitions for public use-----------------------------*/
59 
60 /* Section buffer, buffer size (bytes) */
61 #define SECTION_BUFFER_SIZE (4 * 1024)
62 
63 /* Minimum section buffers */
64 #define MHEG5_MIN_SECTION_BUFFERS (100)
65 
66 /* Minimum task priority */
67 #define MHEG5_MIN_TASK_PRIORITY (4)
68 
69 #define NVM_STORE_SIZE_AU (64 * 1024)
70 #define NVM_STORE_SIZE_SA (512 * 1024)
71 #define AU_NVM_MINIMUM_SIZE ((1024 * 1024 * 2) + NVM_STORE_SIZE_AU)
72 #define SA_NVM_MINIMUM_SIZE ((1024 * 1024 * 32) + NVM_STORE_SIZE_SA)
73 
74 /* Interaction Channel Streamer: buffer sizes (bytes) */
75 #define ICS_DEFAULT_BUFFER_SIZE (3 * 1024 * 1024)
76 #define ICS_MINIMUM_BUFFER_SIZE (768 * 1024)
77 
78 /* Values for colourDepth */
79 #define COLOUR_FORMAT_PALETTE 8
80 #define COLOUR_FORMAT_ARGB4444 16
81 #define COLOUR_FORMAT_ARGB7888 31 /* ST based platform */
82 #define COLOUR_FORMAT_ARGB8888 32
83 
84 /*---Enumerations for public use-----------------------------------------------*/
85 
86 typedef enum
87 {
89 
90  CPROFILE_UK = (1 << 0), /* United Kingdom only */
91  CPROFILE_NZ = (1 << 1), /* New Zealand only */
92  CPROFILE_AU = (1 << 2), /* Australia only */
93  CPROFILE_HK = (1 << 3), /* Hong Kong only */
94  CPROFILE_SA = (1 << 4), /* South Africa only */
95  CPROFILE_ALL = 0x1f, /* all countries above (but not FreeSat) */
96  CPROFILE_FREESAT = (1 << 8) /* FreeSat profile only */
98 
99 /*
100  * Receiver Capabilities
101  */
102 typedef enum
103 {
105 
115 
116 /* Unless VC_HD_VIDEO_NOT_SUPPORTED is set, it is assumed that the receiver
117  * can and must support decoding of:
118  * 1. H.264 video/iframes
119  * 2. HE-AAC audio
120  * 3. E-AC3 audio. */
122 
123 /* Unless VC_SUBT_NOT_SIMULTANEOUS is set, it is assumed the receiver can present
124  * DVB subtitles and presentation engine Visibles simultaneously,
125  * without restriction (see [1] 16.5.1.1) */
127 
128  /* The following MHEG SD scalings are unlikely to be specified, but are here for completeness */
135 
136 typedef enum
137 {
138  /* Display banner and new channel info to user to indicate that channel has changed */
140 
141  /* No banner displayed, act to user as though on original channel */
143 
144  /* No banner displayed, but still show new channel info to user */
147 
148 /*---Global type defs for public use-------------------------------------------*/
149 
150 /* MHEG5 engine setup structure */
151 typedef struct
152 {
153  /* MHEG5 engine task priority value - passed to STB_OSCreateTask
154  * The specified task priority value is used by the main task for MHEG5 engine
155  * MHEG5 engine's timer task is 2 levels ABOVE this
156  */
158 
159  /*
160  * Receiver Capabilities - as given by E_MHEG5_CONFIG above
161  */
163 
164  /*
165  * Screen resolution parameters - required by MHEG5 engine graphics
166  */
170 
171  /* Manufacturer string (passed to MHEG) indicating hardware and software specific
172  * support.
173  * Format: mmmcccvvv
174  * Where:
175  * mmm = unique manufacturer name
176  * ccc = unique model code
177  * vvv = principal version
178  */
180 
181  /*
182  * Country profile support required
183  * Set to CPROFILE_NONE if only require HbbTv support
184  */
186 
187  /* Size of Non-Volitile Memory file system for caching broadcast data
188  * MHEG5 Australia profile requires a minimum of 2MB plus 64K.
189  * MHEG5 South Africa profile requires minimum of 32MB plus 512K.
190  * MHEG5 engine monitors the size of the cached data and ensures that the limit
191  * is not exceeded.
192  */
194 
195  /* IP streamer buffer
196  *
197  * Streaming content from IP connection requires a buffer. The size is
198  * not specified, but the MHEG-5 component is not allowed to buffer more
199  * than 3 Megabytes.
200  *
201  * The size affects the ability of the receiver to deal with jitter and
202  * variable bitrate. Minimum size is 768 Kbytes.
203  * Less than minimum size, or NULL will disable IP streaming.
204  */
207 
208  /*
209  * Pointer to version string as defined by macro "MHEG5_VER_STRING"
210  */
211  const char *version_string;
212 } S_MhegConfig;
213 
214 /*---Global Function prototypes for public use---------------------------------*/
215 
234 
243 E_MhegErr MHEG5_Close(void);
244 
264 E_MhegErr MHEG5_Start( S32BIT serviceIndex, E_ChannelStartMode *quietMode );
265 
274 E_MhegErr MHEG5_Stop( void );
275 
288 E_MhegErr MHEG5_Suspend( void );
289 
300 E_MhegErr MHEG5_Pause(void);
301 
312 E_MhegErr MHEG5_Resume(void);
313 
328 E_MhegErr MHEG5_SetScreenResolution( U16BIT screenWidth, U16BIT screenHeight );
329 
335 void MHEG5_RestoreScreen(void);
336 
341 void* MHEG5_DsmccInstance(void);
342 
343 #endif /* _PM_CONTROL_H */
E_MhegErr MHEG5_Stop(void)
Tells MHEG5 engine to enter stop state (i.e. no broadcast service). This function should kill any cur...
Definition: glue_main.c:725
Definition: mheg5_control.h:114
E_ChannelStartMode
Definition: mheg5_control.h:136
U8BIT * manufacturerString
Definition: mheg5_control.h:179
Definition: mheg5_control.h:131
U8BIT colourDepth
Definition: mheg5_control.h:169
Definition: mheg5_control.h:126
E_MhegErr MHEG5_Resume(void)
This allows Voyageer to be resumed after another application has had display focus (such as an EPG)...
Definition: glue_main.c:969
Definition: mheg5_control.h:129
U16BIT screenWidth
Definition: mheg5_control.h:167
Definition: mheg5_control.h:133
void * streamerBuffer
Definition: mheg5_control.h:205
Definition: mheg5_control.h:112
Definition: mheg5_control.h:109
Definition: mheg5_control.h:94
void * MHEG5_DsmccInstance(void)
Get the DSMCC instance handle.
Definition: glue_dsmcc.c:709
E_MhegErr MHEG5_Start(S32BIT serviceIndex, E_ChannelStartMode *quietMode)
This function starts MHEG5 engine on the current broadcast service. It will cause MHEG5 engine to sta...
Definition: glue_main.c:627
Definition: mheg5_control.h:110
E_MhegErr
Definition: mherrors.h:28
U32BIT nvmSize
Definition: mheg5_control.h:193
MHEG5 engine interface error codes.
Definition: mheg5_control.h:93
uint8_t U8BIT
Definition: techtype.h:93
Definition: mheg5_control.h:142
Definition: mheg5_control.h:145
Definition: mheg5_control.h:113
E_COUNTRY_PROFILE countryProfile
Definition: mheg5_control.h:185
Definition: mheg5_control.h:91
Definition: mheg5_control.h:96
Definition: mheg5_control.h:139
U32BIT taskPriority
Definition: mheg5_control.h:157
Definition: mheg5_control.h:121
Version strings header.
enum E_COUNTRY_PROFILE E_MHEG_PROFILE
int32_t S32BIT
Definition: techtype.h:98
E_MhegErr MHEG5_Open(S_MhegConfig *pSetup)
Initialise MHEG5 engine instance. The following will be performed as a result of a call to this funct...
Definition: glue_main.c:352
Definition: mheg5_control.h:130
E_MhegErr MHEG5_Suspend(void)
Suspend MHEG5 engine (while there is no valid broadcast service). When the external application is pe...
Definition: glue_main.c:787
E_MhegErr MHEG5_SetScreenResolution(U16BIT screenWidth, U16BIT screenHeight)
Sets the screen resolution to new size. This function is required when the external application wishe...
Definition: glue_main.c:1014
uint16_t U16BIT
Definition: techtype.h:95
E_COUNTRY_PROFILE
Definition: mheg5_control.h:86
System Wide Global Technical Data Type Definitions.
Definition: mheg5_control.h:151
E_MhegErr MHEG5_Pause(void)
This allows MHEG5 engine to be paused whilst another application has display focus (such as an EPG)...
Definition: glue_main.c:934
Definition: mheg5_control.h:106
Definition: mheg5_control.h:104
Definition: mheg5_control.h:132
Definition: mheg5_control.h:95
Definition: mheg5_control.h:108
void MHEG5_RestoreScreen(void)
Refresh screen after resolution change with MHEG5_SetScreenResolution() This is a non-blocking functi...
Definition: glue_main.c:1053
E_MhegErr MHEG5_Close(void)
Close MHEG engine. Free allocated MHEG5 engine memory region, and any other related resources...
Definition: glue_main.c:527
Definition: mheg5_control.h:107
const char * version_string
Definition: mheg5_control.h:211
U32BIT streamerBufferSize
Definition: mheg5_control.h:206
Definition: mheg5_control.h:111
Definition of DVB locator and DVB component types.
E_MHEG5_CAPABILITES
Definition: mheg5_control.h:102
Definition: mheg5_control.h:92
E_MHEG5_CAPABILITES capabilities
Definition: mheg5_control.h:162
uint32_t U32BIT
Definition: techtype.h:97
Definition: mheg5_control.h:88
Definition: mheg5_control.h:90
U16BIT screenHeight
Definition: mheg5_control.h:168