DSMCC Version 1.0
DTVKit DSMCC Documentation
 All Data Structures Files Functions Typedefs
siqfuncs.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 _SIQFUNCS_H
26 #define _SIQFUNCS_H
27 
28 typedef void* H_PmtRef;
29 
30 /*!****************************************************************************
31  * @brief Inform the DSM-CC client that parsing of PMT data is about to start
32  * The return value is passed to subsequent PMT parsing call back
33  * functions: i.e. F_ParseDataBcastId and F_PmtParseDone
34  * @param U16BIT serviceId Service id of the PMT
35  * @return H_PmtRef - handle or user data of client
36  ******************************************************************************/
37 typedef H_PmtRef (*F_PmtParseInit)( U16BIT serviceId );
38 
39 /*!****************************************************************************
40  * @brief Parse data broadcast id descriptor for recognised application(s)
41  * SIQ wants to know whether this PMT stream can be used to launch
42  * a DSM-CC boot carousel. When there is more than one choice, SIQ
43  * chooses the PMT stream that had the highest preference value
44  * returned by this function.
45  * Note that this may be called multiple times for a PMT stream,
46  * and always called from within SIQ_ProcessPmt().
47  * Service ID and carousel ID are provided for convenience and are
48  * not required for a basic implementation of this function.
49  * @param H_PmtRef pmtref reference supplied by F_PmtParseInit
50  * @param U32BIT carouselId Carousel associated with this descriptor
51  * @param U8BIT* dbcPtr Pointer to data broadcast id descriptor
52  * @param U8BIT dbcLen Length of data broadcast id descriptor
53  * @return U32BIT - Preference value for this data broadcast id and
54  * associated application type. Zero means that data broadcast id or
55  * application type is not recognised, and SIQ will ignore it.
56  ******************************************************************************/
57 typedef U32BIT (*F_ParseDataBcastId)( H_PmtRef pmtref, U32BIT carouselId,
58  U8BIT* dbcPtr, U8BIT dbcLen );
59 
60 /*!****************************************************************************
61  * @brief Inform the DSM-CC client that parsing of PMT data has completed
62  * @param H_PmtRef pmtref reference supplied by F_PmtParseInit
63  * @return void
64  ******************************************************************************/
65 typedef void (*F_PmtParseDone)( H_PmtRef pmtref );
66 
67 /*!****************************************************************************
68  * @brief Callback to inform of first or changed AIT info in PMT
69  * @param U16BIT serviceId Service id.
70  * @param U16BIT type Type of AIT application
71  * @param U16BIT pid PID containing AIT
72  * @param U8BIT version Current AIT version
73  * @return void
74  ******************************************************************************/
75 typedef void (*F_NotifyAitInfo)( U16BIT serviceId, U16BIT appType,
76  U16BIT pid, U8BIT version );
77 
78 #endif //_SIQFUNCS_H
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_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(* 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