DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
cldsmtypes.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 © 2002 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  *******************************************************************************/
26 #ifndef _CLDSMTYPES_H_
27 #define _CLDSMTYPES_H_
28 
29 /*---includes for this file--------------------------------------------------*/
30 #include "dsm_types.h"
31 
32 /*---Constant and macro definitions for public use---------------------------*/
33 
34 /* Minimum and Maximum number of section filters required by this DSM-CC module.
35  * This is NOT number of PID filters - as there can be many DSM-CC section
36  * filters on a single PID.
37  * For example, UK DTG MHEG main test suite requires at least 46 section
38  * filters, but needs only 2 PID filters for this.
39  * Note that to pass MHEG tests, more that 46 is a must!
40  */
41 #define NUM_SECTION_FILTERS_MINIMUM 8
42 #define NUM_SECTION_FILTERS_DEFAULT 512
43 #define NUM_SECTION_FILTERS_MAXIMUM 1024
44 
45 
46 /* ----------- Section Filter Priorities --------- */
47 
48 /* For DSM-CC sections currently with LOW priority */
49 #define SF_PRIORITY_LOW ((clDsmSFPriority_t)0)
50 
51 /* For DSM-CC sections currently with HIGH priority
52  * Must be given in preference to any low priority */
53 #define SF_PRIORITY_HIGH ((clDsmSFPriority_t)1)
54 
55 /* For DSM-CC sections currently with DIRECT priority
56  * This is where DSM-CC requires that the section should
57  * come direct from transport stream and NOT from any cache
58  * It should be treated as high priority, but not
59  * necessarily in preference to normal high priority filter */
60 #define SF_PRIORITY_DIRECT ((clDsmSFPriority_t)3)
61 
62 /*--------------------------------------------------*/
63 
64 /*---Enumerations for public use---------------------------------------------*/
65 
66 /*---Global type defs for public use-----------------------------------------*/
67 
68 /* -- DSM-CC ERROR CODES -- */
69 
70 typedef enum {
71 /* 0*/ CLDSM_OK = 0,
72 /* 1*/ CLDSM_PENDING,
73 /* 2*/ CLDSM_DUPLICATE_REQUEST,
74 /* 3*/ CLDSM_ERR_END_OF_DATA,
75 /* 4*/ CLDSM_ERR_INTERNAL,
76 /* 5*/ CLDSM_ERR_ABORTED,
77 /* 6*/ CLDSM_ERR_MEM_HEAP_FULL,
78 /* 7*/ CLDSM_ERR_ALLOC_FAILED,
79 /* 8*/ CLDSM_ERR_ILLEGAL_SETUP,
80 /* 9*/ CLDSM_ERR_ILLEGAL_PARAMETER,
81 /*10*/ CLDSM_ERR_INVALID_INSTANCE,
82 /*11*/ CLDSM_ERR_INVALID_CAROUSEL_HANDLE,
83 /*12*/ CLDSM_ERR_CAROUSEL_LOAD_FAILED,
84 /*13*/ CLDSM_ERR_CAROUSEL_NOT_BOOTED,
85 /*14*/ CLDSM_ERR_CAROUSELS_STILL_LOADED,
86 /*15*/ CLDSM_ERR_INVALID_OBJECT_HANDLE,
87 /*16*/ CLDSM_ERR_INVALID_OBJECT_TYPE,
88 /*17*/ CLDSM_ERR_INVALID_PATHNAME,
89 /*18*/ CLDSM_ERR_INVALID_CACHING_RULES,
90 /*19*/ CLDSM_ERR_LOAD_FAILED,
91 /*20*/ CLDSM_ERR_OPEN_OBJECT_LIMIT,
92 /*21*/ CLDSM_ERR_OBJECT_NOT_LOADED,
93 /*22*/ CLDSM_ERR_OBJECT_OPEN,
94 /*23*/ CLDSM_ERR_OBJECT_NOT_OPEN,
95 /*24*/ CLDSM_ERR_OBJECTS_STILL_LOADED,
96 /*25*/ CLDSM_ERR_INVALID_STREAM_EVENT_NAME,
97 /*26*/ CLDSM_ERR_INVALID_STREAM_EVENT_HANDLE,
98 /*27*/ CLDSM_ERR_STREAM_EVENTS_STILL_SUBSCRIBED,
99 /*28*/ CLDSM_ERR_NO_STREAM_EVENT_NOTIFY_CALLBACK,
100 /*29*/ CLDSM_ERR_SI_QUERY_FAILED,
101 /*30*/ CLDSM_ERR_INVALID_SI_INFO,
102 /*31*/ CLDSM_ERR_INVALID_SIQUERY_STATUS,
103 /*32*/ CLDSM_ERR_INVALID_SI_QUERY_REF,
104 /*33*/ CLDSM_ERR_SYSTEM_ADD_SECTION_FILTER,
105 /*34*/ CLDSM_ERR_SECTION_FILTER_HEAP_FULL,
106 /*35*/ CLDSM_ERR_MODULE_TOO_LARGE,
107 /*36*/ CLDSM_ERR_MODULE_ACQUISITION_FAILURE,
108 /*37*/ CLDSM_ERR_UNABLE_TO_GET_PROGRAM_ASSOC_TAG,
109 /*38*/ CLDSM_ERR_NO_CURRENT_SERVICE_SET,
110 /*39*/ CLDSM_ERR_MEMMGR_START_PROBLEM,
111 /*40*/ CLDSM_ERR_MEMMGR_STOP_PROBLEM,
112 /*41*/ CLDSM_ERR_INSTANCE_NOT_RESET,
113 /*42*/ CLDSM_ERR_RECURSION_LIMIT_REACHED,
114 /*43*/ CLDSM_ERR_TIMER_FAILURE,
115 /*44*/ CLDSM_ERR_SI_SUBSCRIBE_FAILURE,
116 /*45*/ CLDSM_ERR_CAROUSEL_UNAVAILABLE,
117 
118 } clDsmErr_t, *pclDsmErr_t;
119 
120 /* -- DSM-CC INSTANCE HANDLE -- */
121 
123 
124 
125 /* -- SECTION FILTER TYPES -- */
126 
127 typedef U32BIT clDsmSFRef_t;
128 typedef U8BIT clDsmSFPriority_t;
129 
130 /*
131 -- Structure definition for Section Filter data
132 --
133 -- PID -> MPEG2 PID
134 --
135 -- filterPriority -> direct, high or low
136 --
137 -- tableId -> DSM-CC tableId filter value for sections (byte 0).
138 -- NB. Only the tableId values of 0x3B, 0x3C, 0x3D will
139 -- be used for DSM-CC section filters.
140 --
141 -- tableIdExt -> DSM-CC tableIdExtension filter value (bytes 3&4)
142 --
143 -- tableIdExtMask -> DSM-CC active filter bits.
144 -- NB.'Wildcard' bitmasks will only be set on contiguous
145 -- bits starting at LSBit.
146 --
147 */
148 typedef struct {
149  U16BIT pid;
150  clDsmSFPriority_t priority;
151  U8BIT tableId;
152  U16BIT tableIdExt;
153  U16BIT tableIdExtMask;
155 
156 typedef struct s_SfmInstance *H_SfmInstance;
157 
158 /* -- SI QUERY TYPES -- */
159 
160 typedef struct _clDsmSIQueryRef_struct* clDsmSIQueryRef_t;
161 
162 typedef enum {
163  /* Following are supplied to startSIQueryFunc() and
164  * returned in successful query result */
165  SIQUERY_PID,
166  SIQUERY_BOOT_CAROUSEL,
167  SIQUERY_CAROUSEL,
168  SIQUERY_PIDLIST,
169  SIQUERY_DEFERRED_SERVICE,
170  SIQUERY_BOOT_INFO,
171 
172  /* Below are used in query result when not success - used in
173  * return from startSIQueryFunc() or
174  * asynchronous callback to clDsmSysProcessSIQueryEvent()
175  */
176  SIRESULT_PENDING,
177  SIRESULT_FAILURE
178 
179 } clDsmSIQueryKind_t, *pclDsmSIQueryKind_t;
180 
181 
182 typedef struct {
183 
184  clDsmSIQueryKind_t kind;
185 
186  U16BIT serviceId;
187 
188  union {
189  U16BIT associationTag;
190  U32BIT carouselId;
191  } data;
192 
194 
195 
196 typedef struct {
197  U16BIT pid;
198  U16BIT associationTag;
199  U32BIT carouselId;
200  /*TODO: ?Format Id?*/
202 
203 
204 typedef struct {
205 
206  clDsmSIQueryKind_t kind;
207 
208  union {
209  U16BIT pid;
210  clDsmCarouselInfo_t carouselInfo;
211  S_DvbLocator deferredService;
212  /* For when query start returns CLDSM_PENDING */
213  void* queryHandle;
214  } data;
215 
217 
218 
219 /* -- SI change event -- */
220 typedef enum {
221  SICHANGE_SERVICE_DELETED,
222  SICHANGE_SERVICE_UPDATED,
223  SICHANGE_CAROUSEL_DELETED
224 } clDsmSIChangeEvent_t, *pclDsmSIChangeEvent_t;
225 
226 typedef struct s_SiqInstance *H_SiqInstance;
227 
228 
229 #endif /* _CLDSMTYPES_H_ */
Definition: dvblocator.h:30
Definition: siq_main.h:33
DSM-CC types used for client control.
Definition: clDsmSystem.h:551
Definition: sfm_main.h:36
Definition: cldsmtypes.h:148
Definition: cldsmtypes.h:204
Definition: cldsmtypes.h:182