DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
dsm_control.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2013 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  *******************************************************************************/
25 #ifndef _DSMAPI_H
26 #define _DSMAPI_H
27 
28 #include "siqfuncs.h"
29 #include "dmxtypes.h"
30 #include "dsm_types.h"
31 #include "stdfuncs.h"
32 
33 /*---Constant and macro definitions for public use-----------------------------*/
34 
35 /*---Enumerations for public use-----------------------------------------------*/
36 
37 /*---Global type defs for public use-------------------------------------------*/
38 
39 
40 typedef void (*F_CarouselLoad)( H_ObjCarousel hOC, E_OCLoadStatus result, U32BIT carouselId );
41 
42 
43 typedef struct s_DsmccConfig
44 {
45  /* DSMCC task priority value - passed to STB_OSCreateTask
46  * The specified task priority value is used by the DSMCC task
47  */
48  U32BIT taskPriority;
49 
50  /* Size of internal section buffers memory pool in 4096 byte blocks. This is
51  * used to provide data directly to DSM-CC instance. The task priority has a
52  * direct influence over section buffer size. Lower task priority means larger
53  * buffer pool requirements.
54  * Minimum value: 100 (400 Kbytes)
55  * Recommended: 200
56  */
57  U8BIT sectionBuffPoolSize;
58 
59  /* Size of section buffer manager cache in 64K byte blocks. This is separate
60  * to sectionBuffPoolSize and this memory is used to store section data not
61  * immediately required by DSM-CC instance. This facilitates faster DSM-CC file
62  * loading - particularly when the number of hardware section filters is limited.
63  * Minimum value: 0
64  * Suggested value: 16
65  */
66  U8BIT sectionBuffCacheSize;
67 
68  F_MemAlloc memAlloc;
69  F_MemFree memFree;
70 
71  F_PmtParseInit parsePmtInit;
72  F_ParseDataBcastId parseDataBroadcastId;
73  F_PmtParseDone parsePmtDone;
74 
75  F_CarouselLoad carouselLoad;
76 
77  /* notifyAitInfo is optional and may be set to NULL */
78  F_NotifyAitInfo notifyAitInfo;
79 
80  BOOLEAN obtainSiDirect;
81 
83 
84 
85 /*---Global Function prototypes for public use---------------------------------*/
86 
93 
99 void DSMCC_Close( H_DsmControl instance );
100 
101 
113 BOOLEAN DSMCC_Start( H_DsmControl instance, S_DvbLocator *locator,
114  U32BIT boot_carousel_id, DMXREF dmxref );
115 
122 void DSMCC_Stop( H_DsmControl instance, E_DsmRstMode mode );
123 
130 void DSMCC_Reboot( H_DsmControl instance );
131 
137 H_ObjCarousel DSMCC_CurrentCarousel( H_DsmControl dsmctrl );
138 
144 U32BIT DSMCC_CurrentCarouselId( H_DsmControl dsmctrl );
145 
153 BOOLEAN DSMCC_SetCurrentCarousel(H_DsmControl dsmctrl, H_ObjCarousel hOC);
154 
162 void DSMCC_UnloadCarousel(H_DsmControl dsmctrl, H_ObjCarousel hOC, E_DsmRstMode mode);
163 
170 void DSMCC_SiqCacheClearPmt( H_DsmControl dsmctrl, U16BIT serviceId );
171 
172 #endif /*_DSMAPI_H */
Definition: dsm_control.h:43
BOOLEAN DSMCC_Start(H_DsmControl instance, S_DvbLocator *locator, U32BIT boot_carousel_id, DMXREF dmxref)
Start DSM-CC controling instance. This will start search for boot carousel on service specified by lo...
Definition: dsm_control.c:1367
H_ObjCarousel DSMCC_CurrentCarousel(H_DsmControl dsmctrl)
Get currently loaded carousel handle.
Definition: dsm_control.c:1494
void DSMCC_Stop(H_DsmControl instance, E_DsmRstMode mode)
Stop DSM-CC controling instance. Causes all carousels to unload.
Definition: dsm_control.c:1414
Definition: dvblocator.h:30
void DSMCC_Close(H_DsmControl instance)
Close DSM-CC controling instance, and destroy all resources.
Definition: dsm_control.c:1325
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
H_DsmControl DSMCC_Open(S_DsmccConfig *config)
Open DSM-CC and create controling instance.
Definition: dsm_control.c:1252
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 DSMCC_Reboot(H_DsmControl instance)
Reboot DSM-CC controling instance. Causes all carousels to unload and initiate search for boot carous...
Definition: dsm_control.c:1458
U32BIT DSMCC_CurrentCarouselId(H_DsmControl dsmctrl)
Get currently loaded carousel ID.
Definition: dsm_control.c:1508
DSM-CC types used for client control.
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
void(* F_PmtParseDone)(H_PmtRef pmtref)
Inform the DSM-CC client that parsing of PMT data has completed.
Definition: siqfuncs.h:65
void DSMCC_SiqCacheClearPmt(H_DsmControl dsmctrl, U16BIT serviceId)
Clear cached PMT for particular service.
Definition: dsm_control.c:1570
Service Information Query: external function prototypes.
void DSMCC_UnloadCarousel(H_DsmControl dsmctrl, H_ObjCarousel hOC, E_DsmRstMode mode)
Unload specified Carousel.
Definition: dsm_control.c:1551
BOOLEAN DSMCC_SetCurrentCarousel(H_DsmControl dsmctrl, H_ObjCarousel hOC)
Set current carousel. This does not unload any previously loaded carousels.
Definition: dsm_control.c:1527
Define standard function types.
Definition: dsm_client.c:39