MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
dvb_service.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2012 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  *******************************************************************************/
38 #ifndef _DVB_SERVICE_H
39 #define _DVB_SERVICE_H
40 
41 #include "techtype.h"
42 #include "dtvstring.h"
43 #include "dmxtype.h"
44 #include "dvblocator.h"
45 #include "mherrors.h"
46 
47 /*---Constant and macro definitions for public use---------------------------*/
48 
49 /*---Enumerations for public use---------------------------------------------*/
50 
51 /*---Global type defs for public use-----------------------------------------*/
52 
53 /* Basic SI structure */
54 typedef struct
55 {
56  /* Identifier of original broadcast network */
58  /* Identifier of transport stream */
60  /* Service identification information */
62  /* Identifier of broadcast network */
65 
66 #if defined INCLUDE_SI_EXTENSION
67 typedef enum
68 {
69  /* Subtitle stream is present */
70  MHEG5_COMPONENT_SUBTITLES,
71 
72  /* Audio Description is available */
73  MHEG5_COMPONENT_AUDIO_DESC,
74 
75  /* The service contains audio streams with more than one audio language */
76  MHEG5_COMPONENT_ALT_LANG,
77 
78  /* Any audio stream is Dolby Digital or Dolby Digital Plus (AC-3/E-AC-3) */
79  MHEG5_COMPONENT_DOLBY,
80 
81  /* Video component is either MPEG-2 high definition video, or H.264 */
82  MHEG5_COMPONENT_HD
83 } E_ComponentKey;
84 
85 typedef struct
86 {
87  U32BIT serviceIndex;
88 
89  /* Service name, from the SDT service_descriptor */
90  S_STRING serviceName;
91 
92  /* Service Provider name, from the SDT service_descriptor */
93  S_STRING serviceProvider;
94 
95  /* Service type, from the SDT service_descriptor */
96  U16BIT serviceType;
97 
98  /* Allocated LCN for service */
99  U16BIT serviceLcn;
100 } S_ServiceDetails;
101 
102 typedef struct
103 {
104  U16BIT hours;
105  U8BIT minutes;
106  U8BIT seconds;
107 } S_Time;
108 
109 typedef struct s_eventdetails
110 {
111  void *dvb_user_data; /* Available for DVB stack - not used by MHEG5 */
112 
113  /* Event name, from the EIT short_event_descriptor */
114  S_STRING eventName;
115 
116  /* Event description, from the EIT short_event_descriptor */
117  S_STRING shortDescription;
118 
119  /* Event parental rating, from the EIT parental_rating_descriptor
120  formatted as it is in parental_rating_descriptor*/
121  U32BIT parentalRating;
122 
123  /* Event start date, in Modified Julian Date format - as per EIT field */
124  U32BIT startDate;
125 
126  /* Event start time, from the EIT start_time field*/
127  S_Time startTime;
128 
129  /* Event duration, from the EIT duration field,
130  as formatted in the EIT*/
131  S_Time duration;
132 
133  /* Event Category string, from the EIT content_descriptor (see Ref [2])
134  * ONLY give bytes containing
135  * 'content_nibble_level_1' and 'content_nibble_level_2'
136  * 'user_data' byte(s) should be ignored.
137  * Note that content_descriptor can have more than one iteration - depending
138  * on descriptor length.
139  */
140  S_STRING category;
141 
142  /* Free-content flag, TRUE if content is free, FALSE if content is CA controlled
143  from EIT free_CA_mode field*/
144  BOOLEAN freeNotCA;
145 } S_EventDetails;
146 
147 #endif /*SI Extension*/
148 
149 /*---Global Function prototypes for public use---------------------------------*/
150 
156 
165 
179 E_MhegErr DVB_MhegDvbLocatorToIndex(S_DvbLocator *pDvbLocator, S32BIT *pServiceIndex);
180 
190 E_MhegErr DVB_MhegIndexToDvbLocator( S32BIT serviceIndex, S_DvbLocator *location );
191 
201 E_MhegErr DVB_MhegIndexToDvbLocation( S32BIT serviceIndex, S_DvbLocation *pDvbLocation );
202 
212 
226 E_MhegErr DVB_MhegTuneIndex(S32BIT serviceIndex);
227 
228 #ifdef INCLUDE_SI_EXTENSION
229 
242 E_MhegErr DVB_MhegGetServiceDetails( S32BIT serviceIndex,
243  S_ServiceDetails *details );
244 
252 void DVB_MhegReleaseServiceDetails( S_ServiceDetails *details );
253 
269 E_MhegErr DVB_MhegGetEventDetails( S32BIT serviceIndex, BOOLEAN porf,
270  S_EventDetails *details );
271 
279 void DVB_MhegReleaseEventDetails( S_EventDetails *details );
280 
281 #ifdef INCLUDE_SA_PROFILE
282 
295 E_MhegErr DVB_MhegGetNumberOfServices(S32BIT *number);
296 
317 E_MhegErr DVB_MhegPrevServiceIndex(S32BIT *serviceIndex);
318 
339 E_MhegErr DVB_MhegNextServiceIndex(S32BIT *serviceIndex);
340 
353 E_MhegErr DVB_MhegGetServiceRunningStatus(S32BIT serviceIndex,
354  U8BIT *runningStatus);
355 
369 E_MhegErr DVB_MhegGetChannelNumber(S32BIT serviceIndex, S32BIT *channelNum);
370 
382 E_MhegErr DVB_MhegGetEventId( S32BIT serviceIndex, BOOLEAN porf, S32BIT *eventId );
383 
411 E_MhegErr DVB_MhegSetEventIterator(S32BIT serviceIndex, S32BIT startDate,
412  S32BIT startTime, S32BIT *eventId);
413 
435 E_MhegErr DVB_MhegIncrementEventIterator(S32BIT *eventId);
436 
453 E_MhegErr DVB_MhegGetScheduledEventDetails(S32BIT serviceIndex,
454  S32BIT eventId,
455  BOOLEAN *result,
456  S_EventDetails *details);
457 
480 E_MhegErr DVB_MhegGetComponentInfo(S32BIT serviceIndex, S32BIT eventId,
481  BOOLEAN *result, E_ComponentKey key,
482  BOOLEAN *value);
483 
513 E_MhegErr DVB_MhegGetComponentData(S32BIT serviceIndex, S32BIT eventId,
514  BOOLEAN *result, U8BIT *strCont,
515  U8BIT *contType, U8BIT *lang);
516 #endif /* INCLUDE_SA_PROFILE */
517 
518 #endif /* INCLUDE_SI_EXTENSION */
519 
520 #ifdef INCLUDE_FREESAT
521 
529 E_MhegErr DVB_MhegGetCurrentFSI(U16BIT *fsi);
530 
545 E_MhegErr DVB_MhegGetFSILocator(U32BIT fsi,
546  S_DVB_LOCATOR *pDvbLocator);
547 
560 E_MhegErr DVB_MhegCurrentServiceIsInGroup(U16BIT groupIdentifier, BOOLEAN *inGroup);
561 
574 E_MhegErr DVB_MhegGetFSIServiceReference(S32BIT serviceIndex, U32BIT *fsi);
575 
576 #endif /*INCLUDE_FREESAT*/
577 
578 #endif /* _DVB_SERVICE_H */
E_MhegErr DVB_MhegTuneIndex(S32BIT serviceIndex)
Tunes to the specified service. This MUST be a non-blocking function If the tuner fails to tune to th...
Definition: dvb_service.h:54
Define MHEG5 String type.
Definition: dvblocator.h:30
U16BIT transport_stream_id
Definition: dvb_service.h:59
E_MhegErr DVB_MhegIndexToDvbLocation(S32BIT serviceIndex, S_DvbLocation *pDvbLocation)
Convert Service index into full DVB location information. This being networkID, origNetworkID, transportStreamID, serviceID.
Define Demux type.
Definition: dtvstring.h:28
E_MhegErr DVB_MhegIndexToDvbLocator(S32BIT serviceIndex, S_DvbLocator *location)
Convert "service index" into DVB locator information. This being original network ID...
E_MhegErr DVB_MhegLcnToDvbLocator(U32BIT lcn, S_DvbLocator *pDvbLocator)
Convert Logical channel number into DVB locator information.
U16BIT original_network_id
Definition: dvb_service.h:57
E_MhegErr
Definition: mherrors.h:28
MHEG5 engine interface error codes.
uint8_t U8BIT
Definition: techtype.h:93
DMXREF DVB_MhegGetDemuxPath(void)
Retrieve demux resource reference.
int32_t S32BIT
Definition: techtype.h:98
U16BIT service_id
Definition: dvb_service.h:61
uint16_t U16BIT
Definition: techtype.h:95
E_MhegErr DVB_MhegGetTunedService(S32BIT *serviceIndex)
Retrieve the DVB locator of the current tuned service. That is, the real service according to the DVB...
System Wide Global Technical Data Type Definitions.
U16BIT network_id
Definition: dvb_service.h:63
Definition of DVB locator and DVB component types.
U8BIT BOOLEAN
Definition: techtype.h:112
E_MhegErr DVB_MhegDvbLocatorToIndex(S_DvbLocator *pDvbLocator, S32BIT *pServiceIndex)
Get a DVB implementation dependant service index - an integer greater or equal to 0...
uint32_t U32BIT
Definition: techtype.h:97
U8BIT DMXREF
Definition: dmxtype.h:32