MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
dvb_pvr.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  *******************************************************************************/
30 #ifndef _DVB_PVR_H
31 #define _DVB_PVR_H
32 
33 #include "techtype.h"
34 #include "dtvstring.h"
35 #include "mherrors.h"
36 
37 /*---Constant and macro definitions for public use-----------------------------*/
38 
39 /*---Enumerations for public use-----------------------------------------------*/
40 
41 /*---Global type defs for public use-------------------------------------------*/
42 
43 /*************************************************
44  *** start of AUSTRALIA profile specific types ***/
45 typedef struct
46 {
50 } S_PVR_DATE;
51 
52 typedef struct
53 {
56 } S_PVR_TIME;
57 
58 typedef struct s_location
59 {
65 } S_LOCATION;
66 
67 typedef struct s_booking
68 {
69  struct s_booking *next;
72 } S_BOOKING;
73 /**** end of AUSTRALIA profile specific types ***
74  ************************************************/
75 
76 /* CRID details structure */
77 typedef struct
78 {
79  /* general information */
83 
84  /* for AUSTRALIA profile */
85  S_BOOKING *bookings; /* NULL, unless AUS profile */
87 
88 
89 /* CRID string - this has format:
90  * Scheme + Authority + Unique Identifier
91  * and for NZ profile, this could additionally have
92  * '#' + Instance Identifier
93  * Also, in the NZ profile CRID type is always supplied with the string.
94  */
95 typedef struct s_crid_rec
96 {
99 } S_CRID_REC;
100 
101 /*---Global Function prototypes for public use---------------------------------*/
102 
134 
135 
143 E_MhegErr PVR_CancelBooking( S_STRING crid, U16BIT crid_type );
144 
145 
154 
155 
164 void PVR_ReleaseList( S_CRID_REC *crid_array );
165 
166 
176 
177 
186 void PVR_ReleaseDetails( S_CRID_DETAILS *details );
187 
188 #endif /* _DVB_PVR_H */
S_PVR_TIME offset
Definition: dvb_pvr.h:63
S_STRING crid
Definition: dvb_pvr.h:97
Define MHEG5 String type.
Definition: dvblocator.h:30
U8BIT day
Definition: dvb_pvr.h:49
U8BIT minute
Definition: dvb_pvr.h:55
S_STRING title
Definition: dvb_pvr.h:81
Definition: dtvstring.h:28
Definition: dvb_pvr.h:52
S32BIT type
Definition: dvb_pvr.h:98
S_BOOKING * bookings
Definition: dvb_pvr.h:85
struct s_booking S_BOOKING
S_PVR_DATE date
Definition: dvb_pvr.h:61
U8BIT hour
Definition: dvb_pvr.h:54
E_MhegErr
Definition: mherrors.h:28
Definition: dvb_pvr.h:67
U32BIT num_locs
Definition: dvb_pvr.h:70
MHEG5 engine interface error codes.
uint8_t U8BIT
Definition: techtype.h:93
Definition: dvb_pvr.h:58
E_MhegErr PVR_CancelBooking(S_STRING crid, U16BIT crid_type)
Removes an event from the PVR schedule.
struct s_booking * next
Definition: dvb_pvr.h:69
S_PVR_TIME time
Definition: dvb_pvr.h:62
S_CRID_REC * PVR_ListBookings(U16BIT *number)
Returns an array of CRIDs (and CRID types for NZ profile) that are being monitored by the PVR...
struct s_crid_rec S_CRID_REC
Definition: dvb_pvr.h:95
S32BIT type
Definition: dvb_pvr.h:80
Definition: dvb_pvr.h:77
int32_t S32BIT
Definition: techtype.h:98
void PVR_ReleaseList(S_CRID_REC *crid_array)
MHEG indicates that it is finished using the array returned by PVR_ListBookings(). For example, platforms that malloc memory for this, may wish to free the memory here.
uint16_t U16BIT
Definition: techtype.h:95
System Wide Global Technical Data Type Definitions.
E_MhegErr PVR_MakeBooking(S_STRING crid, S_CRID_DETAILS *details)
The function adds an event to the PVR’s list of scheduled events to record. The type of CRID can be an...
U16BIT year
Definition: dvb_pvr.h:47
S_CRID_DETAILS * PVR_GetDetails(S_STRING crid)
Required by Australia profile only. Returns the type, name, description and a single booking section ...
struct s_location S_LOCATION
S_LOCATION * p_locs
Definition: dvb_pvr.h:71
S_DVB_LOCATOR dvb_loc
Definition: dvb_pvr.h:60
void PVR_ReleaseDetails(S_CRID_DETAILS *details)
Required by Australia profile only. MHEG indicates that it is finished using the CRID details returne...
S_PVR_TIME duration
Definition: dvb_pvr.h:64
U8BIT month
Definition: dvb_pvr.h:48
S_STRING description
Definition: dvb_pvr.h:82
Definition: dvb_pvr.h:45
uint32_t U32BIT
Definition: techtype.h:97