MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mh5group.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  * Copyright © 2000 Koninklijke Philips Electronics N.V
5  *
6  * This file is part of a DTVKit Software Component
7  * You are permitted to copy, modify or distribute this file subject to the terms
8  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
9  *
10  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
11  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
13  *
14  * If you or your organisation is not a member of DTVKit then you have access
15  * to this source code outside of the terms of the licence agreement
16  * and you are expected to delete this and any associated files immediately.
17  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
18  *******************************************************************************/
31 #ifndef _MH5GROUP_H
32 #define _MH5GROUP_H
33 
34 /*---includes for this file--------------------------------------------------*/
35 
36 #include "mh5action.h"
37 #include "mh5ingredient.h"
38 
39 /*---Constant and macro definitions for public use---------------------------*/
40 #define GRP_HASH_TABLE_SIZE 251
41 /*#define GROUP_MAGIC_NUM 0x970db5f0*/
42 
43 /*---Enumerations for public use---------------------------------------------*/
44 
45 /*---Global type defs for public use-----------------------------------------*/
46 
47 typedef struct sMHEG5Group
48 {
49  /* Base classe */
51 
52  /* Exchanged attributes */
55  /*U32BIT magic;*/
56  /*MHEG5Int standardID[2]; *
57  * MHEG5Int standardVersion;*/
65 
66  /* Internal attributes */
68 
69  /* Engine data */
70  unsigned long startTime;
71 } MHEG5Group;
72 
73 /*---Global variable declarations for public use-----------------------------*/
74 
75 /*---Global Function prototypes for public use-------------------------------*/
76 #ifdef MH5PRINTOUT
77 
83 void MHEG5groupPrint(MHEG5Group *group, char *out);
84 
85 #endif /* MH5PRINTOUT */
86 
93 void MHEG5groupAddItem(MHEG5Group *group, MHEG5Ingredient *item);
94 
101 void MHEG5groupDelItem(MHEG5Group *group, MHEG5Ingredient *item);
102 
103 /*
104  Constructor
105  */
111 void MHEG5groupInit(MHEG5Group *group);
112 
113 
121 void MHEG5groupFree(MHEG5Group *group);
122 
123 
124 /*
125  Internal behaviours
126  */
138 void MHEG5groupPrepare(MHEG5Group *group);
139 
140 
150 void MHEG5groupDestruct(MHEG5Group *group);
151 
152 
166 void MHEG5groupActivate(MHEG5Group *group);
167 
168 
181 void MHEG5groupDeactivate(MHEG5Group *group);
182 
183 /*
184  Actions
185  */
202 
250 
255 void MH5_GroupInit(void);
256 
257 #ifdef INCLUDE_SURFACE_THRESHOLD
258 
263 void MHEG5groupDestroySurfaces(MHEG5Int pixels);
264 #endif /* INCLUDE_SURFACE_THRESHOLD */
265 
266 #endif /*_MH5GROUP_H*/
Definition: mh5action.h:200
void MHEG5groupDestruct(MHEG5Group *group)
Implementation of the Destruction behaviour Destruction.
Definition: mh5group.c:495
MHEG5Ingredient * hashIngred[256]
Definition: mh5group.h:64
Implementation of the Ingredient class.
Definition: mh5base.h:78
void MHEG5groupInit(MHEG5Group *group)
Initialise an Group object with default Values.
Definition: mh5group.c:279
Definition: mh5group.h:47
Definition: mh5ingredient.h:63
MHEG5Int MH5GroupId
Definition: mh5base.h:88
void MHEG5groupDeactivate(MHEG5Group *group)
Implementation of the Deactivation behaviour Deactivation If group is not active, ignore behaviour...
Definition: mh5group.c:805
void MHEG5groupFree(MHEG5Group *group)
Free off all memory associated with the specified object, including any exchanged attributes and inte...
Definition: mh5group.c:309
MHEG5Ingredient * itemHead
Definition: mh5group.h:62
void MH5_GroupInit(void)
This function initialises Group Timers.
Definition: mh5group.c:90
MHEG5ActionList onStartUp
Definition: mh5group.h:59
void MHEG5groupPrepare(MHEG5Group *group)
Implementation of the Preparation behaviour Preparation.
Definition: mh5group.c:343
MH5GroupId group_id
Definition: mh5group.h:54
long MHEG5Int
Definition: mh5base.h:69
MHEG5Int originalCachePriority
Definition: mh5group.h:61
struct sMHEG5Group MHEG5Group
Manage elementary actions Manage a table of all actions and call a specific action which is defined b...
Definition: mh5base.h:165
MHEG5String groupName
Definition: mh5group.h:53
void MHEG5groupDelItem(MHEG5Group *group, MHEG5Ingredient *item)
Delete Item from the List.
Definition: mh5group.c:229
MHEG5Root root
Definition: mh5group.h:50
MHEG5String objectInformation
Definition: mh5group.h:58
MHEG5ErrorCode
Definition: mh5base.h:218
MHEG5Int cachePriority
Definition: mh5group.h:67
unsigned long startTime
Definition: mh5group.h:70
void MHEG5groupAddItem(MHEG5Group *group, MHEG5Ingredient *item)
Add an Item to the List.
Definition: mh5group.c:199
MHEG5ErrorCode MHEG5setTimer(MHEG5Root *target, MHEG5GList *params)
This actions sets a new Timer which results in a TimerFired event when the given time is reached...
Definition: mh5group.c:1068
Definition: mh5root.h:43
MHEG5ErrorCode MHEG5setCachePriority(MHEG5Root *target, MHEG5GList *params)
Implementation of the SetCachePriority action SetCachePriority (NewCachePriority) Set the GroupCacheP...
Definition: mh5group.c:944
MHEG5Ingredient * itemTail
Definition: mh5group.h:63
MHEG5ActionList onCloseDown
Definition: mh5group.h:60
void MHEG5groupActivate(MHEG5Group *group)
Implementation of the Activation behaviour Activation.
Definition: mh5group.c:671