DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
dsiq.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  *
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  *******************************************************************************/
24 #ifndef _DSIQ_H_
25 #define _DSIQ_H_
26 
27 #include "cldsmtypes.h"
28 #include "dmxtypes.h"
29 #include "stdfuncs.h"
30 #include "siqfuncs.h"
31 
32 /* values for debug config */
33 #define DS_MAIN 0x0001
34 #define DS_QUERY 0x0002
35 #define DS_CACHE 0x0004
36 #define DS_PMT 0x0008
37 #define DS_PAT 0x0010
38 #define DS_FUNC 0x0100
39 #define DS_ALL 0x000f
40 
41 #define UNKNOWN_AIT_TYPE 0x7FFF
42 #define UNKNOWN_AIT_VERS 0x7F
43 
44 typedef enum {
45  SIQ_ERROR,
46  SIQ_IGNORE,
47  SIQ_UPDATE
48 } E_SIQ_STATUS;
49 
50 /*------------------- Functions supplied to SIQ at setup ---------------------*/
51 
65 typedef int (*F_DvpRequestPmt)( DMXREF dmxref, U16BIT serviceId );
66 
73 typedef void (*F_DvpCancelPmt)( DMXREF dmxref, U16BIT serviceId );
74 
75 
76 /*---------------- Setup structure for SIQ initialisation --------------------*/
77 
78 typedef struct
79 {
80  /* First five functions here are manditory */
81  F_MemAlloc memAlloc;
82  F_MemFree memFree;
83 
84  F_DvpRequestPmt dvpRequestPmt;
85  F_DvpCancelPmt dvpCancelPmt;
86 
87  F_PmtParseInit parsePmtInit;
88  F_ParseDataBcastId parseDataBroadcastId;
89  F_PmtParseDone parsePmtDone;
90 
91  /* notifyAitInfo is optional and may be set to NULL */
92  F_NotifyAitInfo notifyAitInfo;
93 
94  /* errPrintf and dbgPrintf functions are only used in a debug build.
95  * These are optional and may be set to NULL */
96  F_Printf errPrintf;
97  F_Printf dbgPrintf;
98 
99  /* dbgState controls type of debug output for dbgPrintf
100  * For valid debug filter states see above */
101  U32BIT dbgState;
102 
103 } S_SiqSetup;
104 
105 
106 typedef struct s_SiqCachePat *H_SiqCachePat;
107 typedef struct s_SiqCachePmt *H_SiqCachePmt;
108 typedef struct s_SiqPmtTable *H_SiqPmtTable;
109 
110 /* -- PAT information structure provided to SIQ_UpdatePatInfo -- */
111 typedef struct s_SiqPatTable
112 {
113  U16BIT transportId;
114  U16BIT* serviceIdArray;
115  U8BIT numberOfServices;
116  U8BIT version;
117 } S_SiqPatTable;
118 
119 /*----------------------- Functions that configure SIQ -----------------------*/
120 
127 
134 
143 void SIQ_SetDebugConfig( H_SiqInstance siq, F_Printf errPrintf,
144  F_Printf dbgPrintf, U32BIT dbgState );
145 
152 void SIQ_SetDebugState( H_SiqInstance siq, U32BIT dbgState );
153 
161 
168 void SIQ_SetDemuxHandle( H_SiqInstance siq, DMXREF dmxref );
169 
170 
171 
172 /*------------------ Functions that update SIQ from DVB ----------------------*/
173 
183 
192 void SIQ_TransportChanged( H_SiqInstance siq, U16BIT origNetworkId, U16BIT transportId );
193 
204 E_SIQ_STATUS SIQ_RequirePmt( H_SiqInstance siq, U8BIT *pmt,
205  U16BIT *pSid, U8BIT *pVer );
206 
216 void SIQ_ServiceRemoved( H_SiqInstance siq, U16BIT serviceId );
217 
228 H_SiqPmtTable SIQ_ParsePmt( H_SiqInstance siq, U8BIT *pmt );
229 
243 void SIQ_ProcessPmt( H_SiqInstance siq, H_SiqPmtTable hNewTable,
244  U16BIT serviceId, U8BIT version );
245 
252 void SIQ_CacheClearPmt( H_SiqInstance siq, U16BIT serviceId );
253 
254 
255 /*----------------- Functions provided to DSM-CC component -------------------*/
256 
263 clDsmErr_t SIQ_RequestQueryStart( H_SiqInstance siq, pclDsmSIQuery_t pQuery,
264  clDsmSIQueryRef_t clDsmSIQueryRef, void* clDsmSIUserData,
265  clDsmSIQueryResult_t *pResult );
266 
274  void* queryHandle, clDsmSIQueryRef_t clDsmSIQueryRef );
275 
284 clDsmErr_t SIQ_ServiceInfoChangeSubscribe( H_SiqInstance siq, U16BIT serviceId );
285 
294 void SIQ_ServiceInfoChangeUnsubscribe( H_SiqInstance siq, U16BIT serviceId );
295 
296 #endif /*_DSIQ_H_*/
297 
void SIQ_ServiceRemoved(H_SiqInstance siq, U16BIT serviceId)
Inform SIQ when a service has been removed from PAT. Not required if PAT is supplied to SIQ...
Definition: siq_cache.c:329
void SIQ_SetDsmInstance(H_SiqInstance siq, clDsmInstHandle_t dsm)
Set instance handle for DSM-CC that SIQ is supporting.
Definition: siq_main.c:175
clDsmErr_t SIQ_RequestQueryStart(H_SiqInstance siq, pclDsmSIQuery_t pQuery, clDsmSIQueryRef_t clDsmSIQueryRef, void *clDsmSIUserData, clDsmSIQueryResult_t *pResult)
Start DSM-CC query request. Called by DSM-CC component, and given in clDsmSysCreate setup...
void SIQ_ServiceInfoChangeUnsubscribe(H_SiqInstance siq, U16BIT serviceId)
Unsubscribe component to previously subscribed service change or alteration updates. Called by DSM-CC component, and given in clDsmSysCreate setup.
Definition: siq_cache.c:43
H_SiqInstance SIQ_CreateInstance(S_SiqSetup *pSetup)
Create SIQ instance.
Definition: siq_main.c:67
void SIQ_TransportChanged(H_SiqInstance siq, U16BIT origNetworkId, U16BIT transportId)
Inform SIQ when tuning to another transport stream. Not required if PAT is supplied to SIQ...
Definition: siq_cache.c:311
Define Demux types use in section filter API.
U32BIT(* F_ParseDataBcastId)(H_PmtRef pmtref, U32BIT carouselId, U8BIT *dbcPtr, U8BIT dbcLen)
Parse data broadcast id descriptor for recognised application(s) SIQ wants to know whether this PMT s...
Definition: siqfuncs.h:57
DSM-CC global types header Used by SI Query and Section Filter code.
void SIQ_SetDemuxHandle(H_SiqInstance siq, DMXREF dmxref)
Set handle to be passed to F_DvpRequestPmt and F_DvpCancelPmt.
Definition: siq_main.c:188
H_PmtRef(* F_PmtParseInit)(U16BIT serviceId)
Inform the DSM-CC client that parsing of PMT data is about to start The return value is passed to sub...
Definition: siqfuncs.h:37
void SIQ_SetDebugConfig(H_SiqInstance siq, F_Printf errPrintf, F_Printf dbgPrintf, U32BIT dbgState)
Set Debug config for SIQ.
Definition: siq_main.c:125
Definition: siq_main.h:33
void SIQ_ProcessPmt(H_SiqInstance siq, H_SiqPmtTable hNewTable, U16BIT serviceId, U8BIT version)
Provide PMT section data to SIQ. It assumes CRC has been checked and is passing valid PMT sections So...
Definition: siq_cache.c:449
void SIQ_SetDebugState(H_SiqInstance siq, U32BIT dbgState)
Set Debug state for SIQ.
Definition: siq_main.c:140
void(* F_DvpCancelPmt)(DMXREF dmxref, U16BIT serviceId)
Cancel request for PMT data made by F_DvpRequestPmt()
Definition: dsiq.h:73
void SIQ_UpdatePatInfo(H_SiqInstance siq, S_SiqPatTable *pat)
Tell SIQ of latest PAT for current transport stream. Calling this function is optional. However, if not used, then the platform must use SIQ_ServiceRemoved and SIQ_TransportChanged.
Definition: siq_cache.c:287
void(* F_NotifyAitInfo)(U16BIT serviceId, U16BIT appType, U16BIT pid, U8BIT version)
Callback to inform of first or changed AIT info in PMT.
Definition: siqfuncs.h:75
H_SiqPmtTable SIQ_ParsePmt(H_SiqInstance siq, U8BIT *pmt)
Provide PMT section data to SIQ. It assumes CRC has been checked and is passing valid PMT sections So...
Definition: siq_cache.c:434
void SIQ_CacheClearPmt(H_SiqInstance siq, U16BIT serviceId)
Clear cached PMT information.
Definition: siq_cache.c:529
void(* F_PmtParseDone)(H_PmtRef pmtref)
Inform the DSM-CC client that parsing of PMT data has completed.
Definition: siqfuncs.h:65
int(* F_DvpRequestPmt)(DMXREF dmxref, U16BIT serviceId)
Request PMT data to be supplied to SIQ for this service. The PMT data should be supplied to SIQ_Proce...
Definition: dsiq.h:65
void SIQ_DestroyInstance(H_SiqInstance siq)
Destroy instance created by SIQ_CreateInstance.
Definition: siq_main.c:151
Definition: siq_cache.c:51
Definition: clDsmSystem.h:551
Service Information Query: external function prototypes.
Definition: dsiq.h:111
void SIQ_RequestQueryStop(H_SiqInstance siq, void *queryHandle, clDsmSIQueryRef_t clDsmSIQueryRef)
Stop DSM-CC query request. Called by DSM-CC component, and given in clDsmSysCreate setup...
E_SIQ_STATUS SIQ_RequirePmt(H_SiqInstance siq, U8BIT *pmt, U16BIT *pSid, U8BIT *pVer)
Ask SIQ whether PMT section data is required. It assumes CRC has been checked and is passing valid PM...
Definition: siq_cache.c:373
Definition: dsiq.h:78
Define standard function types.
Definition: cldsmtypes.h:204
Definition: siq_pmt.c:92
Definition: cldsmtypes.h:182
clDsmErr_t SIQ_ServiceInfoChangeSubscribe(H_SiqInstance siq, U16BIT serviceId)
Subscribe a component to receive notification of any changes or alterations to the service informatio...