DVBCore  22.3.0
Open Source DVB Engine
ap_dbacc.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 // pre-processor mechanism so multiple inclusions don't cause compilation error
25 
26 #ifndef _AP_DBACC_H
27 #define _AP_DBACC_H
28 
29 #include "techtype.h"
30 #include "ap_common.h"
31 #include "stbhwtun.h"
32 #include "stbdpc.h" // required for E_STB_DP_TMODE and E_STB_DP_BWIDTH
33 #include "stbsitab.h" /* Required for E_ICON_COORD_SYSTEM */
34 #include "stbgc.h"
35 
36 //---Constant and macro definitions for public use-----------------------------
37 
38 #define ADB_INVALID_DVB_ID 0xffff
39 
40 #define LINK_TYPE_CA_REPLACEMENT_SERVICE 0x03
41 #define LINK_TYPE_SERVICE_REPLACEMENT 0x05
42 
43 // number of service names (default name + preferred names)
44 #define ADB_NUM_SERV_NAME_IDS 6
45 
46 //maximum number of favgroups that can be handled by the database
47 #define ADB_MAX_FAVGROUPS 8
48 
49 /* LNB freq bands */
50 #define LNB_C_BAND_FREQUENCY 5150
51 
52 #define LNB_KU_BAND_FREQUENCY_MINIMUM 9750
53 #define LNB_KU_BAND_FREQUENCY_MAXIMUM 12000
54 
55 #define LNB_KU_BAND_FREQUENCY_LOW LNB_KU_BAND_FREQUENCY_MINIMUM
56 #define LNB_KU_BAND_FREQUENCY_HIGH 10600
57 
58 //---Enumerations for public use-----------------------------------------------
59 typedef enum
60 {
61  ADB_TRANSPORT_LIST_ALL = 0xff,
62  ADB_TRANSPORT_LIST_NOT_TUNED = 0x01,
63  ADB_TRANSPORT_LIST_TUNED = 0x02
64 } ADB_TRANSPORT_LIST_TYPE;
65 
66 typedef enum
67 {
68  ADB_SERVICE_LIST_UNKNOWN = 0x0000,
69  ADB_SERVICE_LIST_TV = 0x0001, // these definitions can be ORed together to make
70  ADB_SERVICE_LIST_RADIO = 0x0002, // combinations, e.g.
71  ADB_SERVICE_LIST_DATA = 0x0004, // ADB_SERVICE_LIST_TV | ADB_SERVICE_LIST_DATA
72  ADB_SERVICE_LIST_DIGITAL = 0x0007,
73  ADB_SERVICE_LIST_IP = 0x0020, // IP services
74  ADB_SERVICE_LIST_FREESAT = 0x0040, // Flag to say that MUST be valid freesat services
75  ADB_SERVICE_LIST_ANALOG = 0x0080,
76  ADB_SERVICE_LIST_TV_DATA = 0x0085,
77  ADB_SERVICE_LIST_FAV_GROUP_A = 0x0100,
78  ADB_SERVICE_LIST_FAV_GROUP_B = 0x0200,
79  ADB_SERVICE_LIST_FAV_GROUP_C = 0x0400,
80  ADB_SERVICE_LIST_FAV_GROUP_D = 0x0800,
81  ADB_SERVICE_LIST_ALL = (ADB_SERVICE_LIST_DIGITAL | ADB_SERVICE_LIST_ANALOG),
82  ADB_SERVICE_LIST_FAV_LIST = 0x8000
83 } ADB_SERVICE_LIST_TYPE;
84 
85 /* Macro to define an ADB_SERVICE_LIST_TYPE for a favourite list */
86 #define ADB_LIST_TYPE_FROM_FAVLIST(id) (((id) << 16) | ADB_SERVICE_LIST_FAV_LIST)
87 #define ADB_FAVLIST_FROM_LIST_TYPE(L) (U8BIT)((L) >> 16)
88 
89 typedef enum /* These values come from the 8bit service type field in the service descriptor */
90 {
91  ADB_SERVICE_TYPE_TV = 0x01,
92  ADB_SERVICE_TYPE_RADIO = 0x02,
93  ADB_SERVICE_TYPE_TELETEXT = 0x03,
94  ADB_SERVICE_TYPE_NVOD_REF = 0x04,
95  ADB_SERVICE_TYPE_NVOD_TIMESHIFT = 0x05,
96  ADB_SERVICE_TYPE_MOSAIC = 0x06,
97  ADB_SERVICE_TYPE_AVC_RADIO = 0x0a,
98  ADB_SERVICE_TYPE_AVC_MOSAIC = 0x0b,
99  ADB_SERVICE_TYPE_DATA = 0x0c,
100  ADB_SERVICE_TYPE_MPEG2_HD = 0x11,
101  ADB_SERVICE_TYPE_AVC_SD_TV = 0x16,
102  ADB_SERVICE_TYPE_AVC_SD_NVOD_TIMESHIFT = 0x17,
103  ADB_SERVICE_TYPE_AVC_SD_NVOD_REF = 0x18,
104  ADB_SERVICE_TYPE_HD_TV = 0x19,
105  ADB_SERVICE_TYPE_AVC_HD_NVOD_TIMESHIFT = 0x1a,
106  ADB_SERVICE_TYPE_AVC_HD_NVOD_REF = 0x1b,
107  ADB_SERVICE_TYPE_UHD_TV = 0x1f,
108  /* Values beloow are chosen so that they do not conflict with broadcast values */
109  ADB_SERVICE_TYPE_ANALOG = 0x100,
110  ADB_SERVICE_TYPE_DSD = 0x101,
111  ADB_SERVICE_TYPE_VIRTUAL = 0x102
112 } ADB_SERVICE_TYPE;
113 
114 typedef enum
115 {
116  /* Video stream types, from least to most preferred */
117  ADB_VIDEO_STREAM,
118  ADB_H264_VIDEO_STREAM,
119  ADB_H265_VIDEO_STREAM,
120  ADB_AVS_VIDEO_STREAM,
121 
122  /* Audio stream types */
123  ADB_AUDIO_STREAM,
124  ADB_AAC_AUDIO_STREAM,
125  ADB_HEAAC_AUDIO_STREAM,
126  ADB_HEAACv2_AUDIO_STREAM,
127  ADB_AC3_AUDIO_STREAM,
128  ADB_EAC3_AUDIO_STREAM,
129 
130  /* Other stream types */
131  ADB_SUBTITLE_STREAM,
132  ADB_DATA_STREAM,
133  ADB_TTEXT_STREAM
134 } ADB_STREAM_TYPE;
135 
136 typedef enum
137 {
138  ADB_STREAM_LIST_ALL = 0xff,
139  ADB_VIDEO_LIST_STREAM = 0x01,
140  ADB_AUDIO_LIST_STREAM = 0x02,
141  ADB_SUBTITLE_LIST_STREAM = 0x04,
142  ADB_DATA_LIST_STREAM = 0x08,
143  ADB_TTEXT_LIST_STREAM = 0x10,
144  ADB_TTEXT_SUBT_LIST_STREAM = 0x20
145 } ADB_STREAM_LIST_TYPE;
146 
147 
148 typedef enum
149 {
150  ADB_AUDIO_TYPE_UNDEFINED = 0,
151  ADB_AUDIO_TYPE_NORMAL = 0, /* This name is deprecated and was incorrectly defined as 1
152  * but is retained for backwards compatibility */
153  ADB_AUDIO_TYPE_CLEAN_EFFECTS = 1,
154  ADB_AUDIO_TYPE_FOR_HEARING_IMPAIRED = 2,
155  ADB_AUDIO_TYPE_FOR_VISUALLY_IMPAIRED = 3
156 } ADB_AUDIO_TYPE;
157 
158 
159 typedef enum
160 {
161  ADB_SUBTITLE_TYPE_DVB = 0x10,
162  ADB_SUBTITLE_TYPE_DVB_4_3 = 0x11,
163  ADB_SUBTITLE_TYPE_DVB_16_9 = 0x12,
164  ADB_SUBTITLE_TYPE_DVB_221_1 = 0x13,
165  ADB_SUBTITLE_TYPE_DVB_HD = 0x14,
166  ADB_SUBTITLE_TYPE_DVB_HARD_HEARING = 0x20,
167  ADB_SUBTITLE_TYPE_DVB_HARD_HEARING_4_3 = 0x21,
168  ADB_SUBTITLE_TYPE_DVB_HARD_HEARING_16_9 = 0x22,
169  ADB_SUBTITLE_TYPE_DVB_HARD_HEARING_221_1 = 0x23,
170  ADB_SUBTITLE_TYPE_DVB_HARD_HEARING_HD = 0x24
171 } ADB_SUBTITLE_TYPE;
172 
173 typedef enum
174 {
175  ADB_TELETEXT_TYPE_INITIAL = 0x01,
176  ADB_TELETEXT_TYPE_SUBTITLE = 0x02,
177  ADB_TELETEXT_TYPE_ADDITIONAL_INFO = 0x03,
178  ADB_TELETEXT_TYPE_SCHEDULE = 0x04,
179  ADB_TELETEXT_TYPE_SUBTITLE_HARD_HEARING = 0x05
180 } ADB_TELETEXT_TYPE;
181 
182 typedef enum
183 {
184  ADB_EVENT_CONTENT_UNCLASSIFIED = 0x00,
185  ADB_EVENT_CONTENT_MOVIE = 0x10,
186  ADB_EVENT_CONTENT_NEWS = 0x20,
187  ADB_EVENT_CONTENT_ENTERTAINMENT = 0x30,
188  ADB_EVENT_CONTENT_SPORT = 0x40,
189  ADB_EVENT_CONTENT_CHILD = 0x50,
190  ADB_EVENT_CONTENT_MUSIC = 0x60,
191  ADB_EVENT_CONTENT_ARTS = 0x70,
192  ADB_EVENT_CONTENT_SOCIAL = 0x80,
193  ADB_EVENT_CONTENT_EDUCATION = 0x90,
194  ADB_EVENT_CONTENT_LEISURE = 0xA0,
195  ADB_EVENT_CONTENT_SPECIAL = 0xB0,
196  ADB_EVENT_CONTENT_RESERVED1 = 0xC0,
197  ADB_EVENT_CONTENT_RESERVED2 = 0xD0,
198  ADB_EVENT_CONTENT_RESERVED3 = 0xE0,
199  ADB_EVENT_CONTENT_USERDEFINED = 0xF0,
200 } ADB_EVENT_CONTENT;
201 
202 typedef enum
203 {
204  FAV_GROUP_A = 0x01,
205  FAV_GROUP_B = 0x02,
206  FAV_GROUP_C = 0x04,
207  FAV_GROUP_D = 0x08,
208  FAV_GROUP_ALL = 0x0f
209 } ADB_FAV_GROUP;
210 
211 typedef enum
212 {
213  ADB_PROFILE_TYPE_BROADCAST,
214  ADB_PROFILE_TYPE_CIPLUS
215 } ADB_PROFILE_TYPE;
216 
217 //---Global type defs for public use-------------------------------------------
218 
219 typedef struct
220 {
221  E_STB_DP_LNB_TYPE type;
222  E_STB_DP_LNB_POWER power;
223  E_STB_DP_DISEQC_TONE diseqc_tone;
224  E_STB_DP_DISEQC_CSWITCH c_switch;
225  BOOLEAN is_22k;
226  BOOLEAN is_12v;
227  BOOLEAN is_pulse_posn;
228  BOOLEAN is_diseqc_posn;
229  BOOLEAN is_smatv;
230  U8BIT diseqc_repeats; // 0 to 3 inclusive
231  U8BIT u_switch; // 0 to 16 inclusive
232  U8BIT unicable_chan;
233  U32BIT unicable_if;
234  U8BIT *name;
236 
240 typedef struct
241 {
242  U8BIT stream_content;
243  U8BIT component_type;
244  U8BIT component_tag;
245  U8BIT language_code[3];
247 
248 typedef struct
249 {
250  U8BIT *item_description;
251  U8BIT *item;
253 
254 //---Global Function prototypes for public use---------------------------------
255 
259 void ADB_ResetDatabase(void);
260 
264 void ADB_SaveDatabase(void);
265 
275 void ADB_SaveEventSchedule(E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite);
276 
283 void ADB_DeleteServices(E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite);
284 
290 void ADB_ReleaseNameList(U8BIT **name_list, U16BIT num_names);
291 
296 U16BIT ADB_GetNumLNBBands(void);
297 
304 void* ADB_AddLNBBand(S_STB_DP_LNB_BAND *band_parameters, void *lnb_ptr);
305 
311 void* ADB_GetNextLNBBand(void *band_ptr);
312 
318 void* ADB_GetLNBBandLNB(void *band_ptr);
319 
326 BOOLEAN ADB_GetLNBBandParameters(void *band_ptr, S_STB_DP_LNB_BAND *params);
327 
332 void ADB_DeleteAssociatedLNBBands(void *lnb_ptr);
333 
338 U16BIT ADB_GetNumSatellites(void);
339 
350 void* ADB_AddSatellite(U8BIT *name_str, U16BIT dish_pos, U16BIT long_pos, BOOLEAN east_west, void *lnb_ptr);
351 
357 void* ADB_GetNextSatellite(void *sat_ptr);
358 
364 U8BIT* ADB_GetSatelliteName(void *sat_ptr);
365 
371 void* ADB_GetSatelliteLNB(void *sat_ptr);
372 
378 U16BIT ADB_GetSatelliteLongitude(void *sat_ptr);
379 
385 BOOLEAN ADB_GetSatelliteDirection(void *sat_ptr);
386 
391 U16BIT ADB_GetNumLNBs(void);
392 
398 void* ADB_AddLNB(ADB_LNB_SETTINGS *settings);
399 
405 void* ADB_GetNextLNB(void *lnb_ptr);
406 
413 BOOLEAN ADB_GetLNBSettings(void *lnb_ptr, ADB_LNB_SETTINGS *settings);
414 
419 U16BIT ADB_GetNumNetworks(void);
420 
428 void ADB_GetNetworkList(void ***nlist_ptr, U16BIT *num_entries_ptr);
429 
434 void ADB_ReleaseNetworkList(void **nlist);
435 
444 U8BIT** ADB_GetNetworkListNames(void **nlist, U16BIT num_entries, BOOLEAN short_names);
445 
454 U32BIT* ADB_GetNetworkListIds(void **nlist, U16BIT num_entries);
455 
462 U8BIT* ADB_GetNetworkName(void *n_ptr);
463 
471 U8BIT* ADB_GetNetworkNameByLang(void *n_ptr, U8BIT lang);
472 
478 U16BIT ADB_GetNetworkId(void *n_ptr);
479 
485 U8BIT ADB_GetNetworkTargetCountries(U32BIT **code_array);
486 
496 U16BIT ADB_GetNetworkPrimaryTargetRegions(U32BIT country_code, U8BIT **code_array, U8BIT ***name_array);
497 
509 U16BIT ADB_GetNetworkSecondaryTargetRegions(U32BIT country_code, U8BIT primary_region,
510  U8BIT **code_array, U8BIT ***name_array);
511 
524 U16BIT ADB_GetNetworkTertiaryTargetRegions(U32BIT country_code, U8BIT primary_region,
525  U8BIT secondary_region, U16BIT **code_array, U8BIT ***name_array);
526 
532 void* ADB_GetTunedNetwork(U8BIT path);
533 
538 U16BIT ADB_GetNumTransports(void);
539 
547 void* ADB_AddIPTransport(U16BIT onet_id, U16BIT tran_id, U8BIT *url);
548 
556 void ADB_GetTransportList(void ***tlist_ptr, U16BIT *num_entries_ptr);
557 
569 void ADB_GetTransportListForTunerType(E_STB_DP_SIGNAL_TYPE tuner_type, void ***tlist_ptr,
570  U16BIT *num_entries_ptr);
571 
581 void ADB_GetNetworkTransportList(void *n_ptr, void ***tlist_ptr, U16BIT *num_entries_ptr);
582 
588 void ADB_ReleaseTransportList(void **tlist, U16BIT num_transports);
589 
597 U8BIT** ADB_GetTransportListNames(void **tlist, U16BIT num_entries);
598 
607 U32BIT* ADB_GetTransportListTids(void **tlist, U16BIT num_entries);
608 
618 U32BIT* ADB_GetTransportListTunedStrengths(void **tlist, U16BIT num_entries);
619 
629 U32BIT* ADB_GetTransportListOriginalNetworkIds(void **tlist, U16BIT num_entries);
630 
639 U32BIT* ADB_GetTransportListFreqs(void **tlist, U16BIT num_entries);
640 
646 E_STB_DP_SIGNAL_TYPE ADB_GetTransportSignalType(void *t_ptr);
647 
654 U8BIT* ADB_GetTransportName(void *t_ptr);
655 
661 U16BIT ADB_GetTransportTid(void *t_ptr);
662 
668 U16BIT ADB_GetTransportOriginalNetworkId(void *t_ptr);
669 
675 void* ADB_GetTransportNetworkPtr(void *t_ptr);
676 
683 U32BIT ADB_GetTransportFreqHz(void *t_ptr);
684 
690 U8BIT ADB_GetTransportBwidth(void *t_ptr);
691 
697 S8BIT ADB_GetTransportOffset(void *t_ptr);
698 
704 E_STB_TUNE_TCONST ADB_GetTransportConstellation(void *t_ptr);
705 
711 E_STB_DP_TMODE ADB_GetTransportTerrMode(void *t_ptr);
712 
718 E_STB_TUNE_TCODERATE ADB_GetTransportLpCodeRate(void *t_ptr);
719 
725 E_STB_TUNE_TCODERATE ADB_GetTransportHpCodeRate(void *t_ptr);
726 
732 E_STB_TUNE_TGUARDINT ADB_GetTransportGuardInt(void *t_ptr);
733 
739 E_STB_TUNE_THIERARCHY ADB_GetTransportHierarchy(void *t_ptr);
740 
746 E_STB_DP_CMODE ADB_GetTransportCableMode(void *t_ptr);
747 
753 U16BIT ADB_GetTransportCableSymbolRate(void *t_ptr);
754 
760 U16BIT ADB_GetTransportSatelliteSymbolRate(void *t_ptr);
761 
767 U8BIT ADB_GetTransportTunedStrength(void *t_ptr);
768 
774 U8BIT ADB_GetTransportTunedQuality(void *t_ptr);
775 
782 void* ADB_GetFullSITransport(void *n_ptr);
783 
789 void* ADB_GetEPGService(void *n_ptr);
790 
800 void ADB_GetTransportTerrestrialTuningParams(void *t_ptr, E_STB_DP_TTYPE *terr_type, U32BIT *freq_hz,
801  E_STB_DP_TMODE *mode, E_STB_DP_TBWIDTH *bwidth, U8BIT *plp_id);
802 
810 void ADB_GetTransportAnalogTuningParams(void *t_ptr, U32BIT *freq_hz, S8BIT *offset,
811  E_STB_DP_ANALOG_VIDEO_TYPE *vtype);
812 
820 void ADB_GetTransportCableTuningParams(void *t_ptr, U32BIT *freq_hz, E_STB_DP_CMODE *mode,
821  U16BIT *symrate);
822 
833 void ADB_GetTransportSatTuningParams(void *t_ptr, U32BIT *freq_hz, E_STB_DP_POLARITY *polarity,
834  U16BIT *symrate, E_STB_DP_FEC *fec, BOOLEAN *dvb_s2, E_STB_DP_MODULATION *modulation);
835 
841 void* ADB_GetTransportSatellite(void *t_ptr);
842 
850 void* ADB_GetTransportFromIds(U16BIT net_id, U16BIT onet_id, U16BIT tran_id);
851 
858 void ADB_SetTunedTransport(U8BIT path, void *t_ptr);
859 
865 void* ADB_GetTunedTransport(U8BIT path);
866 
878 void *ADB_AddServiceUsingDsd(U8BIT *data, U16BIT service_id);
879 
895 void *ADB_AddIPService(void *t_ptr, U16BIT service_id, ADB_SERVICE_TYPE type, U8BIT *name, U16BIT lcn,
896  U8BIT *url, U16BIT port, E_STB_DP_FEC_LAYER fec_layer, S_STB_DP_FEC_LAYER_INFO *fec_info);
897 
902 U16BIT ADB_GetNumServices(void);
903 
912 U16BIT ADB_GetNumServicesInList(U32BIT list_type, BOOLEAN inc_hidden);
913 
924 void ADB_GetServiceList(U32BIT list_type, void ***slist_ptr, U16BIT *num_entries_ptr);
925 
938 void ADB_GetServiceListIncludingHidden(U32BIT list_type, void ***slist_ptr, U16BIT *num_entries_ptr,
939  BOOLEAN ignore_selectable);
940 
947 U16BIT ADB_GetNumDeletedServices(E_STB_DP_SIGNAL_TYPE tuner_type);
948 
957 U16BIT ADB_GetDeletedServiceList(E_STB_DP_SIGNAL_TYPE tuner_type, void ***slist_ptr);
958 
967 void ADB_GetTransportServiceList(void *t_ptr, void ***slist_ptr, U16BIT *num_entries_ptr);
968 
978 void ADB_GetNetworkServiceList(void *n_ptr, void ***slist_ptr, U16BIT *num_entries_ptr);
979 
988 void ADB_GetUnavailableServiceList(void ***slist_ptr, U16BIT *num_entries_ptr);
989 
998 void ADB_GetLockedServiceList(void ***slist_ptr, U16BIT *num_entries_ptr);
999 
1006 void ADB_ReleaseServiceList(void **slist, U16BIT num_servs);
1007 
1016 void ADB_GetServiceListLockedSubset(void **slist, U16BIT num_entries,
1017  void ***locked_slist_ptr, U16BIT *locked_num_entries_ptr);
1018 
1025 void ADB_SortServiceListAlphabetically(void **slist, U16BIT num_entries, BOOLEAN short_name);
1026 
1032 BOOLEAN ADB_IsValidService(void *serv_ptr);
1033 
1041 E_STB_DP_SIGNAL_TYPE ADB_GetServiceSignalType(void *s_ptr, BOOLEAN *is_sig2);
1042 
1051 void* ADB_GetNextServiceInList(U32BIT list_type, void *serv);
1052 
1061 void* ADB_GetPrevServiceInList(U32BIT list_type, void *serv);
1062 
1072 void* ADB_FindServiceByLcn(U32BIT list_type, U16BIT lcn, BOOLEAN show_unselectable);
1073 
1081 void* ADB_FindServiceByNearestLcn(U32BIT list_type, U16BIT lcn);
1082 
1090 void* ADB_FindServiceByIds(U16BIT onet_id, U16BIT tid, U16BIT sid);
1091 
1099 U16BIT ADB_FindLcnInServiceList(U16BIT lcn, void **slist_ptr, U16BIT num_entries);
1100 
1109 U16BIT ADB_FindNearestLcnInServiceList(U16BIT lcn, void **slist_ptr, U16BIT num_entries);
1110 
1118 U16BIT ADB_FindServiceInList(void *s_ptr, void **slist_ptr, U16BIT num_entries);
1119 
1128 U8BIT** ADB_GetServiceListFullNames(void **slist, U16BIT num_entries, BOOLEAN use_pref_names);
1129 
1139 U8BIT** ADB_GetServiceListShortNames(void **slist, U16BIT num_entries, BOOLEAN use_pref_names);
1140 
1149 U16BIT* ADB_GetServiceListLcns(void **slist, U16BIT num_entries);
1150 
1159 U16BIT* ADB_GetServiceListOrigLcns(void **slist, U16BIT num_entries);
1160 
1170 U32BIT* ADB_GetServiceListUnavailableFlag(void **slist, U16BIT num_entries);
1171 
1182 U32BIT* ADB_GetServiceListNewFlag(void **slist, U16BIT num_entries);
1183 
1194 U32BIT* ADB_GetServiceListLockedFlag(void **slist, U16BIT num_entries);
1195 
1202 void ADB_SetServiceListLockedFlag(void **slist, U16BIT num_entries, BOOLEAN locked);
1203 
1213 U32BIT* ADB_GetServiceListScrambledFlag(void **slist, U16BIT num_entries);
1214 
1224 U32BIT* ADB_GetServiceListHdFlag(void **slist, U16BIT num_entries);
1225 
1235 U32BIT* ADB_GetServiceListHiddenFlag(void **slist, U16BIT num_entries);
1236 
1245 U8BIT** ADB_GetServiceListNetworkNames(void **slist, U16BIT num_entries);
1246 
1255 U8BIT** ADB_GetServiceListTransportNames(void **slist, U16BIT num_entries);
1256 
1265 U32BIT* ADB_GetServiceListTransportStrengths(void **slist, U16BIT num_entries);
1266 
1273 void ADB_SetServiceHiddenFlag(void *s_ptr, BOOLEAN hidden);
1274 
1281 BOOLEAN ADB_GetServiceHiddenFlag(void *s_ptr);
1282 
1288 BOOLEAN ADB_GetServiceSelectableFlag(void *s_ptr);
1289 
1295 BOOLEAN ADB_GetServiceLcnEditable(void *s_ptr);
1296 
1303 void ADB_SetServiceDeletedFlag(void *s_ptr, BOOLEAN deleted);
1304 
1312 U8BIT* ADB_GetServiceFullName(void *s_ptr, BOOLEAN use_pref_name);
1313 
1321 U8BIT* ADB_GetServiceShortName(void *s_ptr, BOOLEAN use_pref_name);
1322 
1332 U8BIT* ADB_GetServiceFullNameByLangAndPrefId(void *s_ptr, U8BIT lang, U8BIT pref_name_id);
1333 
1343 U8BIT* ADB_GetServiceShortNameByLangAndPrefId(void *s_ptr, U8BIT lang, U8BIT pref_name_id);
1344 
1350 U16BIT ADB_GetServiceLcn(void *s_ptr);
1351 
1358 void ADB_SetServiceLcn(void *s_ptr, U16BIT lcn);
1359 
1365 U16BIT ADB_GetServiceId(void *s_ptr);
1366 
1374 void ADB_GetServiceIds(void *s_ptr, U16BIT *onet_id, U16BIT *trans_id, U16BIT *serv_id);
1375 
1382 void ADB_SetServiceScheduleState(void *s_ptr, BOOLEAN state);
1383 
1389 BOOLEAN ADB_GetServiceScheduleState(void *s_ptr);
1390 
1397 void ADB_SetServiceNowNextState(void *s_ptr, BOOLEAN state);
1398 
1404 BOOLEAN ADB_GetServiceNowNextState(void *s_ptr);
1405 
1409 void ADB_SortServicesByLcn(void);
1410 
1416 U16BIT ADB_GetServiceOrigLcn(void *s_ptr);
1417 
1423 U16BIT ADB_GetServicePCRPid(void *s_ptr);
1424 
1432 U16BIT ADB_GetServiceAudioPid(void *s_ptr);
1433 
1439 ADB_STREAM_TYPE ADB_GetServiceAudioType(void *s_ptr);
1440 
1446 U16BIT ADB_GetServiceVideoPid(void *s_ptr);
1447 
1453 ADB_STREAM_TYPE ADB_GetServiceVideoType(void *s_ptr);
1454 
1462 U16BIT ADB_GetServiceTextPid(void *s_ptr);
1463 
1469 BOOLEAN ADB_GetServiceIsHd(void *s_ptr);
1470 
1477 U16BIT ADB_GetRequiredAudioPid(void *s_ptr);
1478 
1486 U16BIT ADB_GetRequiredADPid(void *s_ptr, BOOLEAN *broadcast_mix);
1487 
1494 E_STB_DP_AUDIO_MODE ADB_GetRequiredAudioMode(void *s_ptr);
1495 
1505 U16BIT ADB_GetRequiredTtextPid(void *s_ptr, BOOLEAN for_subtitles, U8BIT *magazine, U8BIT *page);
1506 
1515 U16BIT ADB_GetRequiredSubtitleParams(void *s_ptr, U16BIT *cpage_ptr, U16BIT *apage_ptr);
1516 
1522 ADB_SERVICE_TYPE ADB_GetServiceType(void *s_ptr);
1523 
1531 U8BIT* ADB_GetServiceProviderName(void *s_ptr);
1532 
1541 U8BIT* ADB_GetServiceProviderNameByLang(void *s_ptr, U8BIT lang);
1542 
1549 BOOLEAN ADB_GetServiceUnavailableFlag(void *s_ptr);
1550 
1556 U8BIT ADB_GetServiceRunningStatus(void *s_ptr);
1557 
1565 BOOLEAN ADB_GetServiceNotRunningFlag(void *s_ptr);
1566 
1574 BOOLEAN ADB_GetServiceNewFlag(void *s_ptr);
1575 
1582 BOOLEAN ADB_GetServiceLockedFlag(void *s_ptr);
1583 
1589 void ADB_ToggleServiceLockedFlag(void *s_ptr);
1590 
1596 void ADB_SetServiceLockedFlag(void *s_ptr, BOOLEAN locked);
1597 
1605 BOOLEAN ADB_GetServiceScrambledFlag(void *s_ptr);
1606 
1612 BOOLEAN ADB_GetServiceHasCaDesc(void *s_ptr);
1613 
1621 BOOLEAN ADB_GetServiceDoNotScramble(void *s_ptr);
1622 
1629 U8BIT ADB_GetServiceContentProtectionLevel(void *s_ptr);
1630 
1636 BOOLEAN ADB_IsFreesatService(void *s_ptr);
1637 
1643 U16BIT ADB_GetFreesatServiceId(void *s_ptr);
1644 
1650 void* ADB_GetServiceTransportPtr(void *s_ptr);
1651 
1658 U8BIT* ADB_GetServiceDefaultAuthority(void *serv_ptr);
1659 
1666 void ADB_ServiceAddRCTLink(void *serv_ptr, void *link_ptr);
1667 
1672 void ADB_ServiceReleaseRCTLinks(void *serv_ptr);
1673 
1679 U8BIT ADB_GetServiceNumRCTLinks(void *serv_ptr);
1680 
1688 void* ADB_GetServiceRCTLinks(void *serv_ptr, U8BIT *num_links);
1689 
1695 void* ADB_GetNextRCTLink(void *link_ptr);
1696 
1701 void ADB_ReleaseRCTLinks(void *links);
1702 
1708 U8BIT* ADB_GetRCTLinkPromoText(void *link_ptr);
1709 
1715 BOOLEAN ADB_IsRCTLinkGroupTrailer(void *link_ptr);
1716 
1722 U8BIT* ADB_GetRCTLinkName(void *link_ptr);
1723 
1729 U8BIT* ADB_GetRCTLinkUriString(void *link_ptr);
1730 
1737 BOOLEAN ADB_ServiceRCTCanUseDefaultIcon(void *serv_ptr);
1738 
1754 BOOLEAN ADB_ServiceGetRCTIcon(void *serv_ptr, U8BIT **icon_data, U32BIT *data_size, BOOLEAN *pos_valid,
1755  U16BIT *x_pos, U16BIT *y_pos, U16BIT *width, U16BIT *height, E_ICON_COORD_SYSTEM *coord_system);
1756 
1765 BOOLEAN ADB_ServiceAddImageIcon(void *serv_ptr, void *icon_ptr);
1766 
1773 void* ADB_GetAlternativeService(void *s_ptr, U8BIT alt_serv_type);
1774 
1781 U16BIT ADB_ServiceGetSubtitlePid(void *serv_ptr, ADB_SUBT_INFO *subt_info);
1782 
1789 BOOLEAN ADB_ServiceHasSubtitles(void *serv_ptr, E_SUBTITLE_FORMAT *subs_format);
1790 
1797 void ADB_SetTunedService(U8BIT path, void *s_ptr);
1798 
1804 void* ADB_GetTunedService(U8BIT path);
1805 
1810 void ADB_DeleteServiceRec(void *s_ptr);
1811 
1818 U16BIT ADB_GetNumStreams(void *serv_ptr, ADB_STREAM_LIST_TYPE stream_list_type);
1819 
1829 void ADB_GetStreamList(void *serv_ptr, ADB_STREAM_LIST_TYPE stream_list_type, void ***streamlist_ptr, U16BIT *num_entries_ptr);
1830 
1836 void ADB_ReleaseStreamList(void **streamlist_ptr, U16BIT num_entries);
1837 
1843 ADB_STREAM_TYPE ADB_GetStreamType(void *stream_ptr);
1844 
1850 U8BIT ADB_GetStreamNumTags(void *stream_ptr);
1851 
1858 U8BIT ADB_GetStreamTag(void *stream_ptr, U8BIT index);
1859 
1865 U8BIT ADB_GetStreamNumCaptionServices(void *stream_ptr);
1866 
1873 BOOLEAN ADB_GetCaptionServiceDigitalCc(void *stream_ptr, U8BIT index);
1874 
1881 U8BIT ADB_GetCaptionServiceNumber(void *stream_ptr, U8BIT index);
1882 
1889 BOOLEAN ADB_GetCaptionServiceEasyReader(void *stream_ptr, U8BIT index);
1890 
1897 BOOLEAN ADB_GetCaptionServiceWideAspectRatio(void *stream_ptr, U8BIT index);
1898 
1905 U32BIT ADB_GetCaptionServiceLangCode(void *stream_ptr, U8BIT index);
1906 
1915 U16BIT ADB_GetStreamTagContentType(void *stream_ptr, U8BIT index);
1916 
1922 U16BIT ADB_GetStreamPID(void *stream_ptr);
1923 
1930 BOOLEAN ADB_GetStreamInUse(void *stream_ptr);
1931 
1937 S8BIT ADB_GetStreamCcInUse(void *stream_ptr);
1938 
1944 BOOLEAN ADB_GetStreamHasCaDesc(void *stream_ptr);
1945 
1952 U8BIT ADB_GetStreamComponentType(void *stream_ptr);
1953 
1959 U32BIT ADB_GetAudioStreamLangCode(void *stream_ptr);
1960 
1966 ADB_AUDIO_TYPE ADB_GetAudioStreamType(void *stream_ptr);
1967 
1973 E_STB_DP_AUDIO_MODE ADB_GetAudioStreamMode(void *stream_ptr);
1974 
1980 U32BIT ADB_GetTtextStreamLangCode(void *stream_ptr);
1981 
1987 U8BIT ADB_GetTtextStreamType(void *stream_ptr);
1988 
1994 U8BIT ADB_GetTtextStreamMagazine(void *stream_ptr);
1995 
2001 U8BIT ADB_GetTtextStreamPage(void *stream_ptr);
2002 
2008 U32BIT ADB_GetSubtitleStreamLangCode(void *stream_ptr);
2009 
2015 ADB_SUBTITLE_TYPE ADB_GetSubtitleStreamType(void *stream_ptr);
2016 
2022 U16BIT ADB_GetSubtitleStreamCompositionPage(void *stream_ptr);
2023 
2029 U16BIT ADB_GetSubtitleStreamAncillaryPage(void *stream_ptr);
2030 
2036 void ADB_SetAudioLang(U32BIT country_code, U8BIT lang_id);
2037 
2044 void ADB_SetSecondaryAudioLang(U32BIT country_code, U8BIT lang_id);
2045 
2051 void ADB_SetTextLang(U32BIT country_code, U8BIT lang_id);
2052 
2059 void ADB_SetSecondaryTextLang(U32BIT country_code, U8BIT lang_id);
2060 
2061 // now/next and schedule events
2062 
2072 void ADB_GetNowNextEvents(void *serv_ptr, void **now_event, void **next_event);
2073 
2085 void ADB_GetEventSchedule(BOOLEAN include_old_events, void *serv_ptr, void ***elist_ptr,
2086  U16BIT *num_entries_ptr);
2087 
2099 void ADB_GetEventScheduleByGenre(ADB_EVENT_CONTENT genre, BOOLEAN include_old_events,
2100  void *serv_ptr, void ***elist_ptr, U16BIT *num_entries_ptr);
2101 
2106 void ADB_ReleaseEventData(void *event_ptr);
2107 
2113 void ADB_ReleaseEventList(void **elist, U16BIT num_entries);
2114 
2120 void ADB_DeleteServiceEvents(void *serv_ptr, BOOLEAN delete_now_next);
2121 
2126 void ADB_DeleteAllServiceEvents(BOOLEAN delete_now_next);
2127 
2134 void* ADB_GetEvent(void *serv_ptr, U16BIT event_id);
2135 
2148 U8BIT* ADB_GetEventSIDescriptorData(void *serv_ptr, U16BIT event_id, U8BIT dtag_id,
2149  S16BIT ext_dtag_id, U16BIT *desc_len);
2150 
2156 void ADB_ReleaseEventSIDescriptorData(U8BIT *desc_data, U16BIT desc_len);
2157 
2164 void* ADB_EarlierEvent(void *serv_ptr, U32DHMS time);
2165 
2172 void* ADB_LaterEvent(void *serv_ptr, U32DHMS time);
2173 
2182 void* ADB_GetEarlierEvent(void *serv_ptr, U16BIT date, U8BIT hour, U8BIT min);
2183 
2192 void* ADB_GetLaterEvent(void *serv_ptr, U16BIT date, U8BIT hour, U8BIT min);
2193 
2201 void* ADB_FindEventFromTime(U32DHMS time, void *serv_ptr);
2202 
2209 void* ADB_FindEITScheduleEventFromTime(U32DHMS time, void *serv_ptr);
2210 
2216 U32DHMS ADB_GetEventStartDateTime(void *event_ptr);
2217 
2223 U32DHMS ADB_GetEventDuration(void *event_ptr);
2224 
2230 U32DHMS ADB_GetEventEndDateTime(void *event_ptr);
2231 
2237 U16BIT ADB_GetEventStartDate(void *event_ptr);
2238 
2244 U8BIT ADB_GetEventStartHour(void *event_ptr);
2245 
2251 U8BIT ADB_GetEventStartMin(void *event_ptr);
2252 
2258 U8BIT ADB_GetEventStartSecs(void *event_ptr);
2259 
2265 U8BIT ADB_GetEventDurationHour(void *event_ptr);
2266 
2272 U8BIT ADB_GetEventDurationMin(void *event_ptr);
2273 
2279 U8BIT ADB_GetEventDurationSecs(void *event_ptr);
2280 
2281 #if 0
2282 
2290 BOOLEAN ADB_GetEventEndDateTime(void *event_ptr, U16BIT *end_date, U8BIT *end_hour, U8BIT *end_min);
2291 #endif
2292 
2298 BOOLEAN ADB_GetEventSubtitlesAvailFlag(void *event_ptr);
2299 
2305 ADB_EVENT_CONTENT ADB_GetEventContentDesc(void *event_ptr);
2306 
2313 U8BIT* ADB_GetEventContentData(void *event_ptr, U8BIT *p_len);
2314 
2320 U8BIT ADB_GetEventParentalAge(void *event_ptr);
2321 
2328 U8BIT* ADB_GetEventName(void *event_ptr);
2329 
2336 U8BIT* ADB_GetEventDescription(void *event_ptr);
2337 
2343 BOOLEAN ADB_GetEventHasExtendedDescription(void *event_ptr);
2344 
2351 U8BIT* ADB_GetEventExtendedDescription(void *event_ptr);
2352 
2364 U8BIT* ADB_GetEventGuidance(void *event_ptr, void *serv_ptr, U8BIT *type, U8BIT *mode);
2365 
2371 U16BIT ADB_GetEventId(void *event_ptr);
2372 
2378 BOOLEAN ADB_GetEventAudioDescriptionFlag(void *event_ptr);
2379 
2385 BOOLEAN ADB_GetEventFreeToAir(void *event_ptr);
2386 
2394 BOOLEAN ADB_GetEventDoNotScramble(void *event_ptr);
2395 
2409 BOOLEAN ADB_GetEventHDLinkageInfo(void *event_ptr, BOOLEAN verify_event, BOOLEAN only_simulcast,
2410  void **hd_serv_ptr, void **hd_event_ptr);
2411 
2419 BOOLEAN ADB_IsSameEvent(void *event1_ptr, void *event2_ptr);
2420 
2428 U8BIT* ADB_GetEventFullProgrammeCrid(void *serv_ptr, void *event_ptr);
2429 
2437 U8BIT* ADB_GetEventProgrammeCrid(void *serv_ptr, void *event_ptr);
2438 
2446 U8BIT* ADB_GetFullCrid(void *serv_ptr, U8BIT *event_str);
2447 
2453 U8BIT ADB_GetEventNumSeriesCrids(void *event_ptr);
2454 
2463 U8BIT* ADB_GetEventSeriesCrid(U8BIT index, void *serv_ptr, void *event_ptr);
2464 
2470 U8BIT ADB_GetEventNumRecommendationCrids(void *event_ptr);
2471 
2480 U8BIT* ADB_GetEventRecommendationCrid(U8BIT index, void *serv_ptr, void *event_ptr);
2481 
2490 U8BIT ADB_GetEventComponentList(void *event_ptr, ADB_EVENT_COMPONENT_INFO **component_list);
2491 
2498 BOOLEAN ADB_IsSplitProgrammeCrid(U8BIT *crid);
2499 
2506 U8BIT* ADB_GetAuthorityFromCrid(U8BIT *crid);
2507 
2516 void* ADB_FindEventFromCrid(U8BIT *prog_crid, void *original_event_ptr, void **serv_ptr);
2517 
2526 U8BIT ADB_GetServiceFavGroups(void *s_ptr);
2527 
2536 void ADB_SetServiceFavGroups(void *s_ptr, U8BIT groups);
2537 
2538 #if 0
2539 
2546 void ADB_UnsetServiceFavGroupBit(void *s_ptr, U8BIT fgrp_bit);
2547 
2559 void ADB_SetServiceTaggedFavGroupBit(U32BIT *tag_array, void **slist, U16BIT num_entries, U8BIT fgrp_bit);
2560 
2572 void ADB_UnsetServiceTaggedFavGroupBit(U32BIT *tag_array, void **slist, U16BIT num_entries, U8BIT fgrp_bit);
2573 #endif
2574 
2586 void ADB_SetReqdAudioStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code,
2587  ADB_AUDIO_TYPE audio_type, ADB_STREAM_TYPE stream_type);
2588 
2598 void ADB_SetReqdAudioStreamPID(void *s_ptr, BOOLEAN valid, U16BIT pid);
2599 
2609 void ADB_GetReqdAudioStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code,
2610  ADB_AUDIO_TYPE *audio_type, ADB_STREAM_TYPE *stream_type);
2611 
2622 void ADB_SetReqdSubtitleStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, ADB_SUBTITLE_TYPE subt_type);
2623 
2632 void ADB_GetReqdSubtitleStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, ADB_SUBTITLE_TYPE *subt_type);
2633 
2644 void ADB_SetReqdTeletextStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, ADB_TELETEXT_TYPE ttext_type);
2645 
2654 void ADB_GetReqdTeletextStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, ADB_TELETEXT_TYPE *ttext_type);
2655 
2672 void ADB_SetReqdCcStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, BOOLEAN digital_cc,
2673  U8BIT caption_service, BOOLEAN easy_reader, BOOLEAN wide_aspect_ratio);
2674 
2686 void ADB_GetReqdCcStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, BOOLEAN *digital_cc,
2687  U8BIT *caption_service, BOOLEAN *easy_reader, BOOLEAN *wide_aspect_ratio);
2688 
2698 void* ADB_AddCridRecord(U8BIT *crid, BOOLEAN series, BOOLEAN recommended);
2699 
2704 void ADB_SaveCridRecord(void *c_ptr);
2705 
2711 void* ADB_FindCridRecord(U8BIT *crid_str);
2712 
2718 void ADB_SetCridDateTime(void *c_ptr, U32DHMS datetime);
2719 
2725 void ADB_SetCridService(void *c_ptr, U16BIT serv_id);
2726 
2732 void ADB_SetCridProgrammeName(void *c_ptr, U8BIT *prog_name);
2733 
2740 U8BIT* ADB_GetCridProgrammeName(void *c_ptr);
2741 
2747 BOOLEAN ADB_IsProgrammeCrid(void *c_ptr);
2748 
2754 BOOLEAN ADB_IsSeriesCrid(void *c_ptr);
2755 
2761 BOOLEAN ADB_IsRecommendationCrid(void *c_ptr);
2762 
2768 void ADB_SetCridDoNotDelete(void *c_ptr, BOOLEAN do_not_delete);
2769 
2775 BOOLEAN ADB_GetCridDoNotDelete(void *c_ptr);
2776 
2781 void ADB_UpdateCridEitDate(void *c_ptr);
2782 
2789 U8BIT* ADB_GetCridString(void *c_ptr);
2790 
2796 U32DHMS ADB_GetCridDateTime(void *c_ptr);
2797 
2803 U16BIT ADB_GetCridService(void *c_ptr);
2804 
2810 U16BIT ADB_GetCridEitDate(void *c_ptr);
2811 
2816 void ADB_DeleteCridRecord(void *c_ptr);
2817 
2828 void ADB_GetCridRecordList(void ***clist_ptr, U16BIT *num_entries_ptr, BOOLEAN inc_series_crids,
2829  BOOLEAN inc_rec_crids, BOOLEAN inc_prog_crids);
2830 
2836 void ADB_ReleaseCridRecordList(void **crid_list, U16BIT num_entries);
2837 
2847 U16BIT ADB_GetProfileList(void ***profile_list, U16BIT *active_profile);
2848 
2854 void ADB_ReleaseProfileList(void **profile_list, U16BIT num_profiles);
2855 
2861 ADB_PROFILE_TYPE ADB_GetProfileType(void *profile);
2862 
2869 ADB_SERVICE_LIST_TYPE ADB_GetServiceListTypeForCurrentProfile(void);
2870 
2871 #ifdef COMMON_INTERFACE
2872 
2877 void* ADB_FindProfileForModule(U32BIT module);
2878 
2884 BOOLEAN ADB_DeleteProfile(void *profile);
2885 
2892 U8BIT* ADB_GetProfileName(void *profile);
2893 
2900 void ADB_MarkCIModulePresent(U16BIT cicam_onet_id, U32BIT cicam_id);
2901 
2907 void ADB_MarkCIModuleNotPresent(U32BIT module);
2908 
2914 BOOLEAN ADB_GetProfileModulePresent(void *profile);
2915 
2921 U32BIT ADB_GetProfileModule(void *profile);
2922 
2930 BOOLEAN ADB_GetProfileCAMInfo(void *profile, U16BIT *cicam_onet_id, U32BIT *cicam_id);
2931 
2941 BOOLEAN ADB_SetProfileSearchRequired(void *profile, BOOLEAN search_required, U16BIT date,
2942  U8BIT hour, U8BIT min);
2943 
2949 BOOLEAN ADB_GetProfileSearchRequired(void *profile);
2950 
2959 BOOLEAN ADB_GetProfileSearchDateTime(void *profile, U16BIT *date, U8BIT *hours, U8BIT *mins);
2960 
2966 void ADB_SetProfileSearchTimer(U32BIT cicam_id, U32BIT timer_handle);
2967 
2973 U32BIT ADB_GetProfileSearchTimer(void *profile);
2974 
2979 void ADB_DeleteCicamTimerbyHandle(U32BIT timer_handle);
2980 
2986 BOOLEAN ADB_GetServiceSDTReceived(void *s_ptr);
2987 
2993 U8BIT* ADB_GetServiceCIProtectionDesc(void *s_ptr);
2994 
3000 BOOLEAN ADB_HasCIProtectionExpired(void *s_ptr);
3001 #endif
3002 
3010 U8BIT* ADB_GetServicePMTData(void *s_ptr, U16BIT *data_len);
3011 
3017 U16BIT ADB_GetServicePmtPid(void *s_ptr);
3018 
3024 U16BIT ADB_GetServiceAitPid(void *s_ptr);
3025 
3034 U8BIT* ADB_GetServiceFullURL(void *s_ptr, U16BIT *port);
3035 
3042 E_STB_DP_FEC_LAYER ADB_GetServiceFecLayer(void *s_ptr, S_STB_DP_FEC_LAYER_INFO *fec_info);
3043 
3049 BOOLEAN ADB_ImportDB(U8BIT *filename);
3050 
3056 BOOLEAN ADB_ExportDB(U8BIT *filename);
3057 
3066 BOOLEAN ADB_ExportEPG(U8BIT *filename, U16BIT utc_date_filter, U32BIT type, BOOLEAN use_dvb_uri);
3067 
3072 U16BIT ADB_GetNumFavouriteLists(void);
3073 
3083 BOOLEAN ADB_AddFavouriteList(U8BIT *name, U32BIT user_data, S16BIT index, U8BIT *list_id);
3084 
3090 U8BIT ADB_GetFavouriteListIdByIndex(U16BIT index);
3091 
3097 U8BIT ADB_GetFavouriteListByUserData(U32BIT user_data);
3098 
3105 U8BIT* ADB_GetFavouriteListName(U8BIT list_id);
3106 
3113 BOOLEAN ADB_SetFavouriteListName(U8BIT list_id, U8BIT *name);
3114 
3120 U32BIT ADB_GetFavouriteListUserData(U8BIT list_id);
3121 
3127 void ADB_SetFavouriteListUserData(U8BIT list_id, U32BIT user_data);
3128 
3136 BOOLEAN ADB_MoveFavouriteListTo(U8BIT list_id, S16BIT index);
3137 
3142 void ADB_DeleteFavouriteList(U8BIT list_id);
3143 
3153 BOOLEAN ADB_AddServiceToFavouriteList(U8BIT list_id, void *serv_ptr, S16BIT index);
3154 
3164 BOOLEAN ADB_MoveFavouriteListServiceTo(U8BIT list_id, void *serv_ptr, S16BIT index);
3165 
3175 BOOLEAN ADB_MoveFavouriteListServiceFromTo(U8BIT list_id, S16BIT current_index, S16BIT new_index);
3176 
3182 void ADB_DeleteServiceFromFavouriteList(U8BIT list_id, void *serv_ptr);
3183 
3188 void ADB_DeleteAllServicesFromFavouriteList(U8BIT list_id);
3189 
3190 #ifdef DEBUG_PRINT_DATABASE
3191 
3194 void ADB_PrintDatabase(void);
3195 #endif
3196 
3197 
3198 //---Global Function prototypes for internal use---------------------------------
3202 void ADB_Initialise(void);
3203 
3204 #if 0
3205 
3208 void ADB_ReloadDBRam(void);
3209 #endif
3210 
3218 void ADB_PrepareDatabaseForSearch(E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite,
3219  BOOLEAN retune, BOOLEAN manual_search);
3220 
3231 void ADB_FinaliseDatabaseAfterSearch(BOOLEAN save_changes, E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite,
3232  BOOLEAN search_completed, BOOLEAN clear_new_flags, BOOLEAN manual_search);
3233 
3240 BOOLEAN ADB_AreLcnsDuplicated(E_STB_DP_SIGNAL_TYPE tuner_type);
3241 
3246 void ADB_AllocateLcns(E_STB_DP_SIGNAL_TYPE tuner_type);
3247 
3253 
3258 void ADB_ReportNoSignalDuringSearch(void *t_ptr);
3259 
3265 BOOLEAN ADB_GetTransportSearchFlag(void *t_ptr);
3266 
3272 void ADB_SetTransportSearchFlag(void *t_ptr, BOOLEAN state);
3273 
3274 #if 0
3275 void ADB_SetServiceListTaggedLockedFlag(U32BIT *tag_array, void **slist, U16BIT num_entries, BOOLEAN locked);
3276 #endif
3277 
3283 E_STB_DP_AUDIO_CODEC ADB_GetAudioCodecFromStream(ADB_STREAM_TYPE audio_stream_type);
3284 
3290 E_STB_DP_VIDEO_CODEC ADB_GetVideoCodecFromStream(ADB_STREAM_TYPE video_stream_type);
3291 
3297 void* ADB_GetEventService(void *event_ptr);
3298 
3305 ADB_EVENT_ITEMIZED_INFO* ADB_GetEventItemizedDescription(void *event_ptr, U16BIT *num_items_ptr);
3306 
3312 void ADB_ReleaseEventItemizedInfo(ADB_EVENT_ITEMIZED_INFO *event_itemized_info, U16BIT num_of_items);
3313 
3314 #endif // _AP_DBACC_H
Definition: ap_dbacc.h:248
E_STB_TUNE_TCODERATE ADB_GetTransportHpCodeRate(void *t_ptr)
Returns the HP coderate of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2652
E_STB_DP_TMODE ADB_GetTransportTerrMode(void *t_ptr)
Returns the terrestrial mode of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2508
U8BIT * ADB_GetEventRecommendationCrid(U8BIT index, void *serv_ptr, void *event_ptr)
Returns the full recommendation CRID of the given event The returned string should be freed using STB...
Definition: ap_dbacc.c:9793
U16BIT ADB_FindNearestLcnInServiceList(U16BIT lcn, void **slist_ptr, U16BIT num_entries)
Returns the index in the given list of services of the service matching the given, or preceding, LCN.
Definition: ap_dbacc.c:4234
void ADB_ReleaseEventItemizedInfo(ADB_EVENT_ITEMIZED_INFO *event_itemized_info, U16BIT num_of_items)
Frees the memory used by event itemized data.
Definition: ap_dbacc.c:9267
U8BIT * ADB_GetServiceProviderNameByLang(void *s_ptr, U8BIT lang)
Returns the provider name, as a UTF-8 string, using the given language, of the given service...
Definition: ap_dbacc.c:5652
BOOLEAN ADB_GetServiceNowNextState(void *s_ptr)
Returns whether the EIT now/next data is being held in memory for the service.
Definition: ap_dbacc.c:5217
void ADB_GetReqdTeletextStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, ADB_TELETEXT_TYPE *ttext_type)
Returns the settings defined by ADB_SetReqdTeletextStreamSettings that will be used for teletext on t...
Definition: ap_dbacc.c:10337
void ADB_SortServicesByLcn(void)
Sort all services in the database according to their LCNs.
Definition: ap_dbacc.c:10464
U16BIT ADB_GetSubtitleStreamCompositionPage(void *stream_ptr)
Returns the composition page value of the given subtitle stream.
Definition: ap_dbacc.c:7739
void ADB_GetServiceListLockedSubset(void **slist, U16BIT num_entries, void ***locked_slist_ptr, U16BIT *locked_num_entries_ptr)
Creates a subset of locked services from the supplied service list. Memory is allocated as TempMemory...
Definition: ap_dbacc.c:3679
U32DHMS ADB_GetEventDuration(void *event_ptr)
Returns a value representing the duration of the given event.
Definition: ap_dbacc.c:8873
BOOLEAN ADB_GetLNBBandParameters(void *band_ptr, S_STB_DP_LNB_BAND *params)
Returns the structure describing the band and the expected LNB behaviour in it.
Definition: ap_dbacc.c:844
U8BIT * ADB_GetEventSeriesCrid(U8BIT index, void *serv_ptr, void *event_ptr)
Returns the full series CRID of the given event The returned string should be freed using STB_AppFree...
Definition: ap_dbacc.c:9715
U16BIT ADB_GetNumTransports(void)
Returns the number of transports in the database.
Definition: ap_dbacc.c:1851
BOOLEAN ADB_AddServiceToFavouriteList(U8BIT list_id, void *serv_ptr, S16BIT index)
Adds the given service to the favourite list defined by list_id, with the service being optionally ad...
Definition: ap_dbacc.c:11471
U16BIT ADB_GetNumServices(void)
Returns the total number of services in the database.
Definition: ap_dbacc.c:3268
void ADB_SaveDatabase(void)
Saves the database to non-volatile memory.
Definition: ap_dbacc.c:514
void * ADB_GetAlternativeService(void *s_ptr, U8BIT alt_serv_type)
Searches for a replacement service of the given type for the given service.
Definition: ap_dbacc.c:6807
Definition: stbdpc.h:314
void ADB_ToggleServiceLockedFlag(void *s_ptr)
Changes the current state of the given service from locked to unlocked, or vide versa.
Definition: ap_dbacc.c:5928
void ADB_DeleteAssociatedLNBBands(void *lnb_ptr)
Deletes LNB bands associated with a given LNB.
Definition: ap_dbacc.c:874
U8BIT * ADB_GetEventContentData(void *event_ptr, U8BIT *p_len)
Returns the level 1 and 2 values for all content identifiers for the given event. ...
Definition: ap_dbacc.c:9035
U32BIT ADB_GetTransportFreqHz(void *t_ptr)
Returns the frequency, in Hz for DVB-T/T2 and DVB-C, and MHz for DVB-S/S2, of the given transport...
Definition: ap_dbacc.c:2468
void ADB_DeleteServiceEvents(void *serv_ptr, BOOLEAN delete_now_next)
Deletes all events and event related data for the given service.
Definition: ap_dbacc.c:8309
void * ADB_AddIPTransport(U16BIT onet_id, U16BIT tran_id, U8BIT *url)
Adds an IP transport record.
Definition: ap_dbacc.c:1831
void * ADB_GetServiceTransportPtr(void *s_ptr)
Returns a pointer to the service&#39;s parent transport record.
Definition: ap_dbacc.c:6100
BOOLEAN ADB_GetServiceNotRunningFlag(void *s_ptr)
Returns the status of the &#39;not running&#39; flag of the given service. This flag indicates whether a serv...
Definition: ap_dbacc.c:5755
void ADB_Initialise(void)
Initialises database access.
Definition: ap_dbacc.c:179
U16BIT ADB_GetNumLNBs(void)
Returns the number of LNBs in the database.
Definition: ap_dbacc.c:621
U8BIT * ADB_GetEventFullProgrammeCrid(void *serv_ptr, void *event_ptr)
Returns the full programme CRID of the given event (including IMI). The returned string should be fre...
Definition: ap_dbacc.c:9553
void * ADB_GetNextRCTLink(void *link_ptr)
Returns the RCT link following the given link.
Definition: ap_dbacc.c:6396
U32BIT * ADB_GetServiceListLockedFlag(void **slist, U16BIT num_entries)
Allocates and returns an array of the &#39;locked&#39; flags for each of the services in the given service li...
Definition: ap_dbacc.c:4604
U8BIT * ADB_GetServiceDefaultAuthority(void *serv_ptr)
Returns a copy of the default authority CRID string for the given service. This string will be return...
Definition: ap_dbacc.c:6190
S8BIT ADB_GetStreamCcInUse(void *stream_ptr)
Returns the index of the caption service being used for subtitles.
Definition: ap_dbacc.c:7530
void * ADB_GetFullSITransport(void *n_ptr)
Returns a transport that is signalled as containing a complete set of SI data via an NIT linkage desc...
Definition: ap_dbacc.c:11093
U8BIT * ADB_GetEventSIDescriptorData(void *serv_ptr, U16BIT event_id, U8BIT dtag_id, S16BIT ext_dtag_id, U16BIT *desc_len)
Returns a copy of the raw SI descriptor data with the given descriptor tag id and, optionally, extended descriptor tag id, for the event with the given event id. The data must be freed using ADB_ReleaseEventSIDescriptorData.
Definition: ap_dbacc.c:8425
U16BIT ADB_GetRequiredAudioPid(void *s_ptr)
Returns the audio PID to be used for the given service based on language settings, output format, etc.
Definition: ap_dbacc.c:5397
void * ADB_GetEvent(void *serv_ptr, U16BIT event_id)
Returns a copy of the event with the given event ID on the given service.
Definition: ap_dbacc.c:8386
U8BIT ADB_GetServiceContentProtectionLevel(void *s_ptr)
Returns the content protection level value for the service that will have been set by the Nordig cont...
Definition: ap_dbacc.c:5852
U8BIT * ADB_GetSatelliteName(void *sat_ptr)
Returns the pointer to the name of the satellite.
Definition: ap_dbacc.c:974
void ADB_SetServiceNowNextState(void *s_ptr, BOOLEAN state)
Sets whether the now/next EIT events for this service are held in memory. All services save now/next ...
Definition: ap_dbacc.c:5175
BOOLEAN ADB_GetServiceLockedFlag(void *s_ptr)
Returns the status of the &#39;locked&#39; flag of the given service, which is used by the parental control...
Definition: ap_dbacc.c:5906
void ADB_ReleaseProfileList(void **profile_list, U16BIT num_profiles)
Frees a profile list acquired using ADB_GetProfileList.
Definition: ap_dbacc.c:11923
U32BIT * ADB_GetTransportListOriginalNetworkIds(void **tlist, U16BIT num_entries)
Allocates and returns an array of original network ids for each transport in the given list was tuned...
Definition: ap_dbacc.c:2007
BOOLEAN ADB_ServiceGetRCTIcon(void *serv_ptr, U8BIT **icon_data, U32BIT *data_size, BOOLEAN *pos_valid, U16BIT *x_pos, U16BIT *y_pos, U16BIT *width, U16BIT *height, E_ICON_COORD_SYSTEM *coord_system)
Searches all the RCT links for a service to see if any of them define an icon to be used...
Definition: ap_dbacc.c:6709
U8BIT ADB_GetNetworkTargetCountries(U32BIT **code_array)
Returns a combined array of country codes for all discovered networks.
Definition: ap_dbacc.c:1308
ADB_STREAM_TYPE ADB_GetServiceVideoType(void *s_ptr)
Returns the video type being used by the given service.
Definition: ap_dbacc.c:5572
BOOLEAN ADB_AreLcnsDuplicated(E_STB_DP_SIGNAL_TYPE tuner_type)
Checks through all services after a service search and determines whether any of them require the sam...
Definition: ap_dbacc.c:380
U8BIT * ADB_GetFavouriteListName(U8BIT list_id)
Returns the name of the given favourite list, as a Unicode string.
Definition: ap_dbacc.c:11304
U16BIT ADB_GetNumServicesInList(U32BIT list_type, BOOLEAN inc_hidden)
Returns the number of services in the database that would be returned with the given list type...
Definition: ap_dbacc.c:3301
ADB_EVENT_ITEMIZED_INFO * ADB_GetEventItemizedDescription(void *event_ptr, U16BIT *num_items_ptr)
Returns the items of extended event descriptor as item descriptor and item itself.
Definition: ap_dbacc.c:9234
void * ADB_AddServiceUsingDsd(U8BIT *data, U16BIT service_id)
Add service record defined by the given delivery system descriptor. If the DSD defines a transport th...
Definition: ap_dbacc.c:3097
void ADB_SetReqdSubtitleStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, ADB_SUBTITLE_TYPE subt_type)
Explicitly sets or clears the stream that will be used for subtitles on the given service...
Definition: ap_dbacc.c:10263
U16BIT ADB_GetServiceOrigLcn(void *s_ptr)
Returns the logical channel number originally requested by the given service.
Definition: ap_dbacc.c:5242
void * ADB_GetSatelliteLNB(void *sat_ptr)
Returns the LNB associated with the given satellite.
Definition: ap_dbacc.c:1004
Header file - macros and function prototypes for public use.
BOOLEAN ADB_ExportEPG(U8BIT *filename, U16BIT utc_date_filter, U32BIT type, BOOLEAN use_dvb_uri)
Exports the current event schedule as an XML file.
void * ADB_FindServiceByLcn(U32BIT list_type, U16BIT lcn, BOOLEAN show_unselectable)
Returns the service matching the given LCN and list type.
Definition: ap_dbacc.c:4035
void * ADB_GetTunedNetwork(U8BIT path)
Returns the network currently tuned to on the given decode path.
Definition: ap_dbacc.c:1681
U8BIT ADB_GetFavouriteListIdByIndex(U16BIT index)
Returns the list id of the favourite list defined by the given index.
Definition: ap_dbacc.c:11230
U8BIT ADB_GetTtextStreamPage(void *stream_ptr)
Returns the page value of the given teletext stream.
Definition: ap_dbacc.c:7699
U8BIT ADB_GetTransportTunedQuality(void *t_ptr)
Returns the signal quality, as a percentage, of the tuned transport.
Definition: ap_dbacc.c:2400
U32DHMS ADB_GetCridDateTime(void *c_ptr)
Returns a value representing the date & time held in the given CRID record.
Definition: ap_dbacc.c:10857
void * ADB_GetPrevServiceInList(U32BIT list_type, void *serv)
Returns the previous service, in LCN order, for the given list type, starting from the given service...
Definition: ap_dbacc.c:3951
BOOLEAN ADB_ServiceAddImageIcon(void *serv_ptr, void *icon_ptr)
Adds the given image icon to the end of the service&#39;s icon list. The icon id is checked and if it mat...
Definition: ap_dbacc.c:6569
BOOLEAN ADB_IsRCTLinkGroupTrailer(void *link_ptr)
Returns whether the given link is for a group trailer.
Definition: ap_dbacc.c:6486
U16BIT ADB_GetTransportCableSymbolRate(void *t_ptr)
Returns the symbol rate of the given cable transport.
Definition: ap_dbacc.c:2745
BOOLEAN ADB_MoveFavouriteListTo(U8BIT list_id, S16BIT index)
Change the order of the favourite lists by moving the given list to the given position.
Definition: ap_dbacc.c:11416
U8BIT ADB_GetTtextStreamMagazine(void *stream_ptr)
Returns the magazine value of the given teletext stream.
Definition: ap_dbacc.c:7679
void * ADB_FindEventFromTime(U32DHMS time, void *serv_ptr)
Finds the event scheduled to be broadcast at the specified time on the specified service.
Definition: ap_dbacc.c:8692
BOOLEAN ADB_GetServiceDoNotScramble(void *s_ptr)
Returns the do_not_scramble flag for the service which is based on the presence of an FTA descriptor...
Definition: ap_dbacc.c:5828
void ADB_ReleaseStreamList(void **streamlist_ptr, U16BIT num_entries)
Frees the memory allocated for a stream list using ADB_GetStreamList.
Definition: ap_dbacc.c:7211
U16BIT * ADB_GetServiceListOrigLcns(void **slist, U16BIT num_entries)
Allocates and returns an array of the logical channel numbers that each of the services in the given ...
Definition: ap_dbacc.c:4440
U16BIT ADB_GetRequiredADPid(void *s_ptr, BOOLEAN *broadcast_mix)
Returns the PID to be used for audio description for the given service based on language settings...
Definition: ap_dbacc.c:5425
U32DHMS ADB_GetEventStartDateTime(void *event_ptr)
Returns a value representing the date and time of the start of the given event.
Definition: ap_dbacc.c:8801
U16BIT * ADB_GetServiceListLcns(void **slist, U16BIT num_entries)
Allocates and returns an array of the logical channel numbers that have been assigned to all the serv...
Definition: ap_dbacc.c:4402
E_STB_DP_CMODE ADB_GetTransportCableMode(void *t_ptr)
Returns the QAM mode of the given cable transport.
Definition: ap_dbacc.c:2714
BOOLEAN ADB_GetEventHasExtendedDescription(void *event_ptr)
Checks whether the given event has any extended event descriptors.
Definition: ap_dbacc.c:9165
U8BIT ADB_GetCaptionServiceNumber(void *stream_ptr, U8BIT index)
Returns the caption service number of the given stream.
Definition: ap_dbacc.c:7402
U8BIT * ADB_GetEventProgrammeCrid(void *serv_ptr, void *event_ptr)
Returns the programme CRID of the given event (excluding IMI) The returned string should be freed usi...
Definition: ap_dbacc.c:9628
void ADB_DeleteFavouriteList(U8BIT list_id)
Deletes the favourite list with the given list id.
Definition: ap_dbacc.c:11444
U16BIT ADB_GetEventStartDate(void *event_ptr)
Returns the MJD date code for the start of the given event.
Definition: ap_dbacc.c:8833
U8BIT * ADB_GetEventDescription(void *event_ptr)
Returns the short event description text of the event as a UTF-8 string. The returned string should b...
Definition: ap_dbacc.c:9133
U8BIT ** ADB_GetTransportListNames(void **tlist, U16BIT num_entries)
Returns a list of names, in UTF-8 format, corresponding to the given transport list. The returned list should be freed using ADB_ReleaseNameList.
Definition: ap_dbacc.c:1892
Structure representing the component information as found in the EIT component_descriptor.
Definition: ap_dbacc.h:240
Definition: ap_common.h:63
U8BIT * ADB_GetRCTLinkUriString(void *link_ptr)
Returns the uri string of the given RCT link.
Definition: ap_dbacc.c:6541
void ADB_ServiceReleaseRCTLinks(void *serv_ptr)
Frees all RCT link info for the given service.
Definition: ap_dbacc.c:6253
void ADB_GetServiceListIncludingHidden(U32BIT list_type, void ***slist_ptr, U16BIT *num_entries_ptr, BOOLEAN ignore_selectable)
Allocates and returns a list of all services in the database for the given list type, including hidden services.
Definition: ap_dbacc.c:3371
BOOLEAN ADB_IsRecommendationCrid(void *c_ptr)
Returns TRUE if the CRID record given represents a recommendation.
Definition: ap_dbacc.c:10748
BOOLEAN ADB_GetLNBSettings(void *lnb_ptr, ADB_LNB_SETTINGS *settings)
Returns the current settings for the given LNB.
Definition: ap_dbacc.c:705
void * ADB_GetLNBBandLNB(void *band_ptr)
Returns the LNB associated with the band.
Definition: ap_dbacc.c:814
U16BIT ADB_GetNumSatellites(void)
Returns the number of satellites in the database.
Definition: ap_dbacc.c:905
U32BIT * ADB_GetNetworkListIds(void **nlist, U16BIT num_entries)
Allocates and returns an array of network ids for the given networks The returned array should be fre...
Definition: ap_dbacc.c:1210
U32BIT * ADB_GetTransportListFreqs(void **tlist, U16BIT num_entries)
Allocates and returns an array of tuning frequencies for each transport in the given list...
Definition: ap_dbacc.c:2045
U8BIT ADB_GetFavouriteListByUserData(U32BIT user_data)
Returns the list id of the favourite list with the given user data value.
Definition: ap_dbacc.c:11267
BOOLEAN ADB_SetFavouriteListName(U8BIT list_id, U8BIT *name)
Set the name of the given favourite list.
Definition: ap_dbacc.c:11333
void * ADB_FindEITScheduleEventFromTime(U32DHMS time, void *serv_ptr)
Finds the event in the event schedule to be broadcast at the specified time on the specified service...
Definition: ap_dbacc.c:8757
U16BIT ADB_GetStreamPID(void *stream_ptr)
Returns the PID for the given stream.
Definition: ap_dbacc.c:7489
void ADB_SaveCridRecord(void *c_ptr)
Saves a CRID record to non-volatile storage.
Definition: ap_dbacc.c:10507
U8BIT * ADB_GetFullCrid(void *serv_ptr, U8BIT *event_str)
Returns the full CRID for the given CRID string The returned string should be freed using STB_AppFree...
Definition: ap_dbacc.c:9686
void ADB_DeleteServices(E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite)
Deletes all networks, transports and services related to the given type of tuner. ...
Definition: ap_dbacc.c:565
void * ADB_GetTransportSatellite(void *t_ptr)
Returns the parent satellite for the given transport.
Definition: ap_dbacc.c:2970
void ADB_ReleaseNameList(U8BIT **name_list, U16BIT num_names)
Frees the memory used by any of the name lists (e.g. networks, services, etc)
Definition: ap_dbacc.c:598
Definition: stbdpc.h:308
U8BIT ** ADB_GetServiceListFullNames(void **slist, U16BIT num_entries, BOOLEAN use_pref_names)
Allocates and returns a list of the fullnames for all the services in the given service list...
Definition: ap_dbacc.c:4305
void ADB_ReportNoSignalDuringSearch(void *t_ptr)
Set the signal level to 0 and searched flag to TRUE for the given transport.
Definition: ap_dbacc.c:2288
U16BIT ADB_GetServiceTextPid(void *s_ptr)
Returns the PID being used for DVB subtitles and/or teletext for the given service. This will be the one chosen based on the settings for language, etc, or the one explicitly set (e.g. due to user selection).
Definition: ap_dbacc.c:5338
void * ADB_AddSatellite(U8BIT *name_str, U16BIT dish_pos, U16BIT long_pos, BOOLEAN east_west, void *lnb_ptr)
Creates a new satellite in the database with the given settings.
Definition: ap_dbacc.c:930
ADB_PROFILE_TYPE ADB_GetProfileType(void *profile)
Returns the type of the given profile.
Definition: ap_dbacc.c:11937
BOOLEAN ADB_GetEventSubtitlesAvailFlag(void *event_ptr)
Returns whether DVB subtitles are signalled as being available for the given event.
Definition: ap_dbacc.c:8967
ADB_STREAM_TYPE ADB_GetServiceAudioType(void *s_ptr)
Returns the audio type being used by the given service.
Definition: ap_dbacc.c:5313
void ADB_GetNetworkTransportList(void *n_ptr, void ***tlist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all transport records in the database for the given network...
Definition: ap_dbacc.c:1776
void * ADB_FindServiceByIds(U16BIT onet_id, U16BIT tid, U16BIT sid)
Returns a pointer to the service matching the given IDs.
Definition: ap_dbacc.c:4172
U8BIT ADB_GetServiceRunningStatus(void *s_ptr)
Returns the running status of the given service as reported by the SDT.
Definition: ap_dbacc.c:5728
U8BIT ADB_GetServiceNumRCTLinks(void *serv_ptr)
Returns the number of RCT links for the given service.
Definition: ap_dbacc.c:6280
void ADB_SetReqdAudioStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, ADB_AUDIO_TYPE audio_type, ADB_STREAM_TYPE stream_type)
Explicitly sets or clears the stream that will be used for audio on the given service. If &#39;valid&#39; is TRUE then the stream is set according to the given language and types, but if FALSE then the audio stream selected for the service will be based on the default settings.
Definition: ap_dbacc.c:10183
U8BIT * ADB_GetServicePMTData(void *s_ptr, U16BIT *data_len)
Returns the current PMT data for the given service.
Definition: ap_dbacc.c:11732
U8BIT * ADB_GetServiceFullURL(void *s_ptr, U16BIT *port)
Returns the full URL for an IP service as a UTF-8 string, and the port. The returned string should be...
Definition: ap_dbacc.c:11811
S8BIT ADB_GetTransportOffset(void *t_ptr)
Returns the tuning offset of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2539
void ADB_GetTransportList(void ***tlist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all transport records in the database.
Definition: ap_dbacc.c:1703
BOOLEAN ADB_GetCaptionServiceDigitalCc(void *stream_ptr, U8BIT index)
Returns the digital_cc setting of the given stream.
Definition: ap_dbacc.c:7373
U16BIT ADB_GetNetworkPrimaryTargetRegions(U32BIT country_code, U8BIT **code_array, U8BIT ***name_array)
Returns an array of primary region codes and names for the given country.
Definition: ap_dbacc.c:1384
U32BIT * ADB_GetServiceListScrambledFlag(void **slist, U16BIT num_entries)
Allocates and returns an array of the scrambled flags for each of the services in the given service l...
Definition: ap_dbacc.c:4643
void ADB_GetReqdAudioStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, ADB_AUDIO_TYPE *audio_type, ADB_STREAM_TYPE *stream_type)
Returns the settings defined by ADB_SetReqdAudioStreamSettings that will be used for audio on the giv...
Definition: ap_dbacc.c:10235
void ADB_GetNowNextEvents(void *serv_ptr, void **now_event, void **next_event)
Makes copies of the now and/or next events (EITp/f) for the given service. The returned events should...
Definition: ap_dbacc.c:7947
E_STB_TUNE_TCONST ADB_GetTransportConstellation(void *t_ptr)
Returns the constellation of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2559
void * ADB_GetNextLNB(void *lnb_ptr)
Returns the next LNB from the database.
Definition: ap_dbacc.c:684
ADB_SERVICE_LIST_TYPE ADB_GetServiceListTypeForCurrentProfile(void)
Returns the default list type for the current profile. This function returns ADB_SERVICE_LIST_ALL if ...
Definition: ap_dbacc.c:11961
void ADB_ReleaseCridRecordList(void **crid_list, U16BIT num_entries)
Frees memory allocated for a CRID list due to a call to ADB_GetCridRecordList.
Definition: ap_dbacc.c:11073
U32BIT ADB_GetCaptionServiceLangCode(void *stream_ptr, U8BIT index)
Returns the 3 char language code of the given stream.
Definition: ap_dbacc.c:7344
void ADB_ReleaseTransportList(void **tlist, U16BIT num_transports)
Frees a transport list returned from one of the ADB_GetTransportList functions.
Definition: ap_dbacc.c:1871
U16BIT ADB_GetNumLNBBands(void)
Returns the number of LNB bands in the database.
Definition: ap_dbacc.c:751
BOOLEAN ADB_ExportDB(U8BIT *filename)
Exports the database as an XML file.
Definition: ap_dbxml.c:2660
U8BIT ADB_GetEventStartMin(void *event_ptr)
Returns the minute (0-59) value for the start of the given event.
Definition: ap_dbacc.c:8853
void ADB_GetUnavailableServiceList(void ***slist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all services that are marked as being unavailable. A service becomes unavailable when it disappears from the SDT.
Definition: ap_dbacc.c:3549
E_STB_TUNE_THIERARCHY ADB_GetTransportHierarchy(void *t_ptr)
Returns the hierarchy of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2590
U32BIT ADB_GetAudioStreamLangCode(void *stream_ptr)
Returns the language code associated with the given audio stream.
Definition: ap_dbacc.c:7578
E_STB_DP_AUDIO_MODE ADB_GetAudioStreamMode(void *stream_ptr)
Returns the audio mode of the given stream.
Definition: ap_dbacc.c:7618
void ADB_SetFavouriteListUserData(U8BIT list_id, U32BIT user_data)
Set the user data of the given favourite list.
Definition: ap_dbacc.c:11391
U16BIT ADB_GetSatelliteLongitude(void *sat_ptr)
Returns the longitudinal position of the given satellite in 1/10ths degree.
Definition: ap_dbacc.c:1033
U8BIT * ADB_GetServiceFullNameByLangAndPrefId(void *s_ptr, U8BIT lang, U8BIT pref_name_id)
Returns the full name of the given service as a UTF-8 string using the given language and preferred n...
Definition: ap_dbacc.c:4997
void ADB_GetStreamList(void *serv_ptr, ADB_STREAM_LIST_TYPE stream_list_type, void ***streamlist_ptr, U16BIT *num_entries_ptr)
Allocates and returns an array of the streams of the given type and for the given service...
Definition: ap_dbacc.c:7002
BOOLEAN ADB_GetServiceSelectableFlag(void *s_ptr)
Returns the selectable status of the given service.
Definition: ap_dbacc.c:10037
void ADB_ReleaseEventSIDescriptorData(U8BIT *desc_data, U16BIT desc_len)
Frees the data returned by ADB_GetEventSIDescriptorData.
Definition: ap_dbacc.c:8513
void * ADB_GetTransportFromIds(U16BIT net_id, U16BIT onet_id, U16BIT tran_id)
Finds the transport with the given ids.
Definition: ap_dbacc.c:3003
U16BIT ADB_FindServiceInList(void *s_ptr, void **slist_ptr, U16BIT num_entries)
Returns the index in the given list of services of the given service.
Definition: ap_dbacc.c:4271
BOOLEAN ADB_GetEventHDLinkageInfo(void *event_ptr, BOOLEAN verify_event, BOOLEAN only_simulcast, void **hd_serv_ptr, void **hd_event_ptr)
Returns whether there&#39;s an HD event linked to the SD event and returns the info for it...
Definition: ap_dbacc.c:9457
void ADB_SetServiceLcn(void *s_ptr, U16BIT lcn)
Sets the assigned logical channel number of the given service. This will override any LCN assigned wh...
Definition: ap_dbacc.c:10101
U16BIT ADB_GetRequiredTtextPid(void *s_ptr, BOOLEAN for_subtitles, U8BIT *magazine, U8BIT *page)
Returns the PID to be used for teletext for the given service based on language settings.
Definition: ap_dbacc.c:5485
BOOLEAN ADB_AddFavouriteList(U8BIT *name, U32BIT user_data, S16BIT index, U8BIT *list_id)
Creates a new favourite list and adds it to the existing lists, if any.
Definition: ap_dbacc.c:11194
BOOLEAN ADB_GetServiceScheduleState(void *s_ptr)
Returns whether the EIT schedule events are being held in memory for the service. ...
Definition: ap_dbacc.c:5149
E_STB_TUNE_TGUARDINT ADB_GetTransportGuardInt(void *t_ptr)
Returns the guard interval of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2683
BOOLEAN ADB_GetEventAudioDescriptionFlag(void *event_ptr)
Returns whether audio description is signalled as being available for the given event.
Definition: ap_dbacc.c:9351
U8BIT ADB_GetEventParentalAge(void *event_ptr)
Returns the parental age value for the given event.
Definition: ap_dbacc.c:9067
void ADB_SetReqdCcStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, BOOLEAN digital_cc, U8BIT caption_service, BOOLEAN easy_reader, BOOLEAN wide_aspect_ratio)
Explicitly sets or clears the stream that will be used for subtitles on the given service...
Definition: ap_dbacc.c:10369
U16BIT ADB_GetNumNetworks(void)
Returns the number of network records in the database.
Definition: ap_dbacc.c:1090
ADB_EVENT_CONTENT ADB_GetEventContentDesc(void *event_ptr)
Returns the level 1 value of the first content identifier for the given event.
Definition: ap_dbacc.c:8999
void * ADB_GetNextSatellite(void *sat_ptr)
Returns the next satellite from the database.
Definition: ap_dbacc.c:954
void * ADB_GetTransportNetworkPtr(void *t_ptr)
Returns the network of the given transport.
Definition: ap_dbacc.c:2440
E_STB_DP_SIGNAL_TYPE ADB_GetTransportSignalType(void *t_ptr)
Returns the signal type for the given transport.
Definition: ap_dbacc.c:2312
void ADB_ReleaseServiceList(void **slist, U16BIT num_servs)
Frees a list of services returned from one of the functions that returns a service list...
Definition: ap_dbacc.c:3657
U8BIT ADB_GetEventComponentList(void *event_ptr, ADB_EVENT_COMPONENT_INFO **component_list)
Retrieves a list of components associated with the specified event, as described by component descrip...
Definition: ap_dbacc.c:9821
void ADB_SetServiceScheduleState(void *s_ptr, BOOLEAN state)
Sets whether the EIT schedule events for this service are held in memory. All services hold schedule ...
Definition: ap_dbacc.c:5116
U8BIT * ADB_GetRCTLinkPromoText(void *link_ptr)
Returns the RCT link&#39;s promotional text based on the default language.
Definition: ap_dbacc.c:6432
void ADB_GetNetworkServiceList(void *n_ptr, void ***slist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all services in the database on all transports on the given network...
Definition: ap_dbacc.c:3489
U32BIT * ADB_GetServiceListHdFlag(void **slist, U16BIT num_entries)
Allocates and returns an array indicating whether each service in the given service list is an HD ser...
Definition: ap_dbacc.c:4682
U8BIT ADB_GetTransportTunedStrength(void *t_ptr)
Returns the signal strength, as a percentage, of the tuned transport.
Definition: ap_dbacc.c:2380
U8BIT ADB_GetEventNumRecommendationCrids(void *event_ptr)
Returns the number of recommendation CRIDs for the given event.
Definition: ap_dbacc.c:9765
E_STB_TUNE_TCODERATE ADB_GetTransportLpCodeRate(void *t_ptr)
Returns the LP coderate of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2621
U8BIT ** ADB_GetServiceListShortNames(void **slist, U16BIT num_entries, BOOLEAN use_pref_names)
Allocates and returns a list of the short names for all the services in the given service list...
Definition: ap_dbacc.c:4355
void ADB_GetTransportAnalogTuningParams(void *t_ptr, U32BIT *freq_hz, S8BIT *offset, E_STB_DP_ANALOG_VIDEO_TYPE *vtype)
Returns the settings to tune to the given terrestrial analog transport.
Definition: ap_dbacc.c:2859
U32BIT * ADB_GetServiceListHiddenFlag(void **slist, U16BIT num_entries)
Allocates and returns an array indicating whether each service in the given service list is signalled...
Definition: ap_dbacc.c:4762
ADB_AUDIO_TYPE ADB_GetAudioStreamType(void *stream_ptr)
Returns the audio type of the given stream.
Definition: ap_dbacc.c:7598
void ADB_SetReqdAudioStreamPID(void *s_ptr, BOOLEAN valid, U16BIT pid)
Explicitly sets or clears the stream that will be used for audio on the given service. If &#39;valid&#39; is TRUE then the stream is set according to the given PID, but if FALSE then the audio stream selected for the service will be based on the default settings.
Definition: ap_dbacc.c:10211
U16BIT ADB_GetNetworkTertiaryTargetRegions(U32BIT country_code, U8BIT primary_region, U8BIT secondary_region, U16BIT **code_array, U8BIT ***name_array)
Returns an array of tertiary region codes and names for the given country, primary region and seconda...
Definition: ap_dbacc.c:1585
void * ADB_GetNextLNBBand(void *band_ptr)
Returns the next LNB band from the database.
Definition: ap_dbacc.c:794
void * ADB_AddIPService(void *t_ptr, U16BIT service_id, ADB_SERVICE_TYPE type, U8BIT *name, U16BIT lcn, U8BIT *url, U16BIT port, E_STB_DP_FEC_LAYER fec_layer, S_STB_DP_FEC_LAYER_INFO *fec_info)
Add IP service record.
Definition: ap_dbacc.c:3217
U16BIT ADB_GetDeletedServiceList(E_STB_DP_SIGNAL_TYPE tuner_type, void ***slist_ptr)
Returns a list of services that have been marked as &#39;deleted&#39; for the given tuner type...
Definition: ap_dbacc.c:3410
void ADB_ReleaseDatabaseSearchData(void)
Frees all data that&#39;s only required for service search. This should be called after the search is com...
Definition: ap_dbacc.c:421
U8BIT ADB_GetEventDurationMin(void *event_ptr)
Returns the minute value (0-59) for the duration of the given event.
Definition: ap_dbacc.c:8915
U16BIT ADB_GetServiceAitPid(void *s_ptr)
Returns the current AIT PID for the given service.
Definition: ap_dbacc.c:11784
void ADB_SetReqdTeletextStreamSettings(void *s_ptr, BOOLEAN valid, U32BIT lang_code, ADB_TELETEXT_TYPE ttext_type)
Explicitly sets or clears the stream that will be used for teletext on the given service. If &#39;valid&#39; is TRUE then the stream is set according to the given language and type, but if FALSE then the stream selected for the service will be based on the default settings.
Definition: ap_dbacc.c:10313
U8BIT * ADB_GetCridProgrammeName(void *c_ptr)
Returns the programme name field of the given CRID record. The returned string should be freed using ...
Definition: ap_dbacc.c:10636
U16BIT ADB_GetTransportTid(void *t_ptr)
Returns the transport id of the given transport.
Definition: ap_dbacc.c:2360
U8BIT ADB_GetEventStartSecs(void *event_ptr)
Returns the seconds (0-59) value for the start of the given event.
Definition: ap_dbacc.c:8863
U16BIT ADB_GetServiceLcn(void *s_ptr)
Returns the logical channel number assigned to the given service.
Definition: ap_dbacc.c:5041
U8BIT * ADB_GetEventGuidance(void *event_ptr, void *serv_ptr, U8BIT *type, U8BIT *mode)
Returns the guidance text for an event, either from the event itself or the event&#39;s service...
Definition: ap_dbacc.c:9296
BOOLEAN ADB_GetServiceHiddenFlag(void *s_ptr)
Returns the hidden status of the given service. A hidden service should not be present to teh user in...
Definition: ap_dbacc.c:10014
U32BIT * ADB_GetServiceListNewFlag(void **slist, U16BIT num_entries)
Allocates and returns an array of the &#39;new&#39; flags for each of the services in the given service list...
Definition: ap_dbacc.c:4564
Header file - macros and function prototypes for public use.
void ADB_SetCridDoNotDelete(void *c_ptr, BOOLEAN do_not_delete)
Sets the do not delete flag for the given CRID.
Definition: ap_dbacc.c:10778
void * ADB_GetTunedTransport(U8BIT path)
Returns the transport that&#39;s tuned to on the given decode path.
Definition: ap_dbacc.c:3050
U32BIT * ADB_GetServiceListUnavailableFlag(void **slist, U16BIT num_entries)
Allocates and returns an array of the unavailable flags for each of the services in the given service...
Definition: ap_dbacc.c:4524
Header file - macros and function prototypes for public use.
BOOLEAN ADB_MoveFavouriteListServiceTo(U8BIT list_id, void *serv_ptr, S16BIT index)
Change the order of the services in the given favourite lists by moving it to the given position...
Definition: ap_dbacc.c:11507
U16BIT ADB_GetCridService(void *c_ptr)
Returns the service ID held in the given CRID record.
Definition: ap_dbacc.c:10887
BOOLEAN ADB_GetServiceScrambledFlag(void *s_ptr)
Returns the status of the &#39;scrambled&#39; flag of the given service. This flag is set depending on the sc...
Definition: ap_dbacc.c:5780
void * ADB_GetTunedService(U8BIT path)
Returns the tuned service for the given decode path.
Definition: ap_dbacc.c:6169
U8BIT * ADB_GetRCTLinkName(void *link_ptr)
Returns the name of the given RCT link.
Definition: ap_dbacc.c:6511
void ADB_SetTunedService(U8BIT path, void *s_ptr)
Sets the tuned service for the given path, together with the associated tuned transport and network...
Definition: ap_dbacc.c:6124
BOOLEAN ADB_IsSeriesCrid(void *c_ptr)
Returns TRUE if the CRID record given represents a series.
Definition: ap_dbacc.c:10718
BOOLEAN ADB_IsValidService(void *serv_ptr)
Checks whether the given service is in the current service list.
Definition: ap_dbacc.c:3778
U16BIT ADB_GetNumStreams(void *serv_ptr, ADB_STREAM_LIST_TYPE stream_list_type)
Returns the number of streams of the given type for the given service.
Definition: ap_dbacc.c:6965
void ADB_ReleaseNetworkList(void **nlist)
Frees a network list returned by ADB_GetNetworkList.
Definition: ap_dbacc.c:1153
U8BIT ADB_GetEventDurationHour(void *event_ptr)
Returns the hour value for the duration of the given event.
Definition: ap_dbacc.c:8905
U32BIT * ADB_GetTransportListTids(void **tlist, U16BIT num_entries)
Allocates and returns an array of transport ids for the given transports. The returned array should b...
Definition: ap_dbacc.c:1929
void * ADB_FindServiceByNearestLcn(U32BIT list_type, U16BIT lcn)
Returns the service matching the given, or preceding, LCN and list type.
Definition: ap_dbacc.c:4127
U32BIT * ADB_GetTransportListTunedStrengths(void **tlist, U16BIT num_entries)
Allocates and returns an array of percentage values representing the signal strength when each transp...
Definition: ap_dbacc.c:1968
void ADB_DeleteAllServicesFromFavouriteList(U8BIT list_id)
Removes all services from the favourite list defined by list_id.
Definition: ap_dbacc.c:11611
BOOLEAN ADB_GetSatelliteDirection(void *sat_ptr)
Returns the position direction of the given satellite.
Definition: ap_dbacc.c:1064
U16BIT ADB_ServiceGetSubtitlePid(void *serv_ptr, ADB_SUBT_INFO *subt_info)
Determines subtitle PID and whether it is DVB or teletext, for the given service. ...
Definition: ap_dbacc.c:6846
U16BIT ADB_GetSubtitleStreamAncillaryPage(void *stream_ptr)
Returns the ancillary page value of the given subtitle stream.
Definition: ap_dbacc.c:7759
void * ADB_GetLaterEvent(void *serv_ptr, U16BIT date, U8BIT hour, U8BIT min)
Returns a copy of the event following the given date/time on the given service.
Definition: ap_dbacc.c:8681
void ADB_SetTextLang(U32BIT country_code, U8BIT lang_id)
Sets the primary subtitle and teletext language to be used.
Definition: ap_dbacc.c:7898
BOOLEAN ADB_GetCaptionServiceWideAspectRatio(void *stream_ptr, U8BIT index)
Returns the wide aspect ratio setting of the given stream.
Definition: ap_dbacc.c:7461
void ADB_ReleaseRCTLinks(void *links)
Frees the given list of RCT links.
Definition: ap_dbacc.c:6418
U16BIT ADB_GetTransportOriginalNetworkId(void *t_ptr)
Returns the original network id of the given transport.
Definition: ap_dbacc.c:2420
BOOLEAN ADB_MoveFavouriteListServiceFromTo(U8BIT list_id, S16BIT current_index, S16BIT new_index)
Change the order of the services in the given favourite lists by moving it to the given position...
Definition: ap_dbacc.c:11544
U32BIT ADB_GetFavouriteListUserData(U8BIT list_id)
Returns the user data value of the given favourite list.
Definition: ap_dbacc.c:11363
void ADB_DeleteAllServiceEvents(BOOLEAN delete_now_next)
Deletes all events and event related data for all services.
Definition: ap_dbacc.c:8354
U8BIT ADB_GetStreamNumTags(void *stream_ptr)
Returns the number of tag values defined for the given stream.
Definition: ap_dbacc.c:7267
U16BIT ADB_GetRequiredSubtitleParams(void *s_ptr, U16BIT *cpage_ptr, U16BIT *apage_ptr)
Returns the PID to be used for DVB subtitles for the given service based on language settings...
Definition: ap_dbacc.c:5512
void ADB_GetReqdSubtitleStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, ADB_SUBTITLE_TYPE *subt_type)
Returns the settings defined by ADB_SetReqdSubtitleStreamSettings that will be used for subtitles on ...
Definition: ap_dbacc.c:10287
U16BIT ADB_GetServiceVideoPid(void *s_ptr)
Returns the video PID for the given service.
Definition: ap_dbacc.c:5549
U8BIT * ADB_GetAuthorityFromCrid(U8BIT *crid)
Returns a copy of the authority part of the CRID string The returned string should be freed using STB...
Definition: ap_dbacc.c:9854
void * ADB_FindEventFromCrid(U8BIT *prog_crid, void *original_event_ptr, void **serv_ptr)
Finds an alternative event for the given programme CRID and returns a pointer to a copy of the event ...
Definition: ap_dbacc.c:9895
void * ADB_GetEarlierEvent(void *serv_ptr, U16BIT date, U8BIT hour, U8BIT min)
Returns a copy of the event preceeding the given date/time on the given service.
Definition: ap_dbacc.c:8604
void ADB_AllocateLcns(E_STB_DP_SIGNAL_TYPE tuner_type)
Allocates LCNs to services after a service search. This function assumes that ADB_FinaliseDatabaseAft...
Definition: ap_dbacc.c:403
void ADB_SetTransportSearchFlag(void *t_ptr, BOOLEAN state)
Sets whether a transport has been used during a service scan operation.
Definition: ap_dbacc.c:2270
BOOLEAN ADB_GetEventFreeToAir(void *event_ptr)
Returns whether the event is signalled with none of its streams being CA scrambled.
Definition: ap_dbacc.c:9383
void ADB_SetServiceLockedFlag(void *s_ptr, BOOLEAN locked)
Locks or unlocks the given service.
Definition: ap_dbacc.c:5963
BOOLEAN ADB_GetCaptionServiceEasyReader(void *stream_ptr, U8BIT index)
Returns the easy reader setting of the given stream.
Definition: ap_dbacc.c:7432
ADB_SUBTITLE_TYPE ADB_GetSubtitleStreamType(void *stream_ptr)
Returns the type, as defined in the PMT, of the given subtitle stream.
Definition: ap_dbacc.c:7833
BOOLEAN ADB_IsFreesatService(void *s_ptr)
Returns a value indicating whether the given service is a Freesat service.
Definition: ap_dbacc.c:5986
BOOLEAN ADB_GetServiceUnavailableFlag(void *s_ptr)
Returns the status of the unavailable flag of the given service. This flag indicates whether a servic...
Definition: ap_dbacc.c:5705
void ADB_GetServiceList(U32BIT list_type, void ***slist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all services in the database for the given list type.
Definition: ap_dbacc.c:3350
U8BIT ** ADB_GetNetworkListNames(void **nlist, U16BIT num_entries, BOOLEAN short_names)
Returns a list of names, in UTF-8 format, corresponding to the given network list. The returned list should be freed using ADB_ReleaseNameList.
Definition: ap_dbacc.c:1173
void ADB_SetAudioLang(U32BIT country_code, U8BIT lang_id)
Sets the primary audio language to be used.
Definition: ap_dbacc.c:7853
void ADB_GetTransportSatTuningParams(void *t_ptr, U32BIT *freq_hz, E_STB_DP_POLARITY *polarity, U16BIT *symrate, E_STB_DP_FEC *fec, BOOLEAN *dvb_s2, E_STB_DP_MODULATION *modulation)
Returns the parameters needed to tune a satellite tuner to a transport.
Definition: ap_dbacc.c:2930
void ADB_FinaliseDatabaseAfterSearch(BOOLEAN save_changes, E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite, BOOLEAN search_completed, BOOLEAN clear_new_flags, BOOLEAN manual_search)
Completes the database setup after a search has completed or been stopped.
Definition: ap_dbacc.c:295
U16BIT ADB_GetServiceId(void *s_ptr)
Returns the signalled service id of the given service.
Definition: ap_dbacc.c:5061
void * ADB_AddLNBBand(S_STB_DP_LNB_BAND *band_parameters, void *lnb_ptr)
Creates a new LNB band in the database with the given settings.
Definition: ap_dbacc.c:772
void ADB_SetCridDateTime(void *c_ptr, U32DHMS datetime)
Sets the date and time fields on the given CRID record.
Definition: ap_dbacc.c:10563
void ADB_GetNetworkList(void ***nlist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of the network records in the database.
Definition: ap_dbacc.c:1112
U16BIT ADB_FindLcnInServiceList(U16BIT lcn, void **slist_ptr, U16BIT num_entries)
Returns the index into the given list of services of the service with the given LCN.
Definition: ap_dbacc.c:4196
void ADB_SaveEventSchedule(E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite)
Saves the event schedule for all services for the given type of tuner to the database. Note: the database has to support this operation.
Definition: ap_dbacc.c:536
E_STB_DP_AUDIO_MODE ADB_GetRequiredAudioMode(void *s_ptr)
Returns the mode to be used for audio for the given service based on language settings, output format, etc.
Definition: ap_dbacc.c:5456
void ADB_GetTransportListForTunerType(E_STB_DP_SIGNAL_TYPE tuner_type, void ***tlist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all transport records in the database for the given type of tuner...
Definition: ap_dbacc.c:1723
void ADB_GetCridRecordList(void ***clist_ptr, U16BIT *num_entries_ptr, BOOLEAN inc_series_crids, BOOLEAN inc_rec_crids, BOOLEAN inc_prog_crids)
Creates an array of CRID record pointers to pass back to the caller with the number of entries in the...
Definition: ap_dbacc.c:10970
System Wide Global Technical Data Type Definitions.
U16BIT ADB_GetNetworkSecondaryTargetRegions(U32BIT country_code, U8BIT primary_region, U8BIT **code_array, U8BIT ***name_array)
Returns an array of secondary region codes and names for the given country and primary region...
Definition: ap_dbacc.c:1483
BOOLEAN ADB_GetServiceHasCaDesc(void *s_ptr)
Used to query whether the given service has a CA descriptor.
Definition: ap_dbacc.c:5803
void ADB_PrepareDatabaseForSearch(E_STB_DP_SIGNAL_TYPE tuner_type, void *satellite, BOOLEAN retune, BOOLEAN manual_search)
Sets up the database for a search.
Definition: ap_dbacc.c:200
U16BIT ADB_GetProfileList(void ***profile_list, U16BIT *active_profile)
Returns an array of available profiles. The array will be allocated within the function and should be...
Definition: ap_dbacc.c:11903
BOOLEAN ADB_ServiceRCTCanUseDefaultIcon(void *serv_ptr)
Checks all the RCT links for the given service to determine whether any of them specify that the defa...
Definition: ap_dbacc.c:6659
void ADB_SetServiceFavGroups(void *s_ptr, U8BIT groups)
Sets the favourite group value for the given service. This is an 8-bit value that can define whether ...
Definition: ap_dbacc.c:10158
U8BIT * ADB_GetServiceShortNameByLangAndPrefId(void *s_ptr, U8BIT lang, U8BIT pref_name_id)
Returns the short name of the given service as a UTF-8 string using the given language and preferred ...
Definition: ap_dbacc.c:5021
U16BIT ADB_GetCridEitDate(void *c_ptr)
Returns the EIT update date contained in the given CRID record.
Definition: ap_dbacc.c:10917
void ADB_SetSecondaryAudioLang(U32BIT country_code, U8BIT lang_id)
Sets the secondary audio language to be used. This will be selected if the primary audio language isn...
Definition: ap_dbacc.c:7876
U8BIT ADB_GetServiceFavGroups(void *s_ptr)
Returns the favourite group value for the given service. This is an 8-bit value that can define wheth...
Definition: ap_dbacc.c:10132
U32BIT ADB_GetSubtitleStreamLangCode(void *stream_ptr)
Returns the 3 char language code of the given subtitle stream.
Definition: ap_dbacc.c:7719
void * ADB_GetEPGService(void *n_ptr)
Returns a service that is signalled as containing EPG data via an NIT linkage descriptor.
Definition: ap_dbacc.c:11132
void * ADB_GetServiceRCTLinks(void *serv_ptr, U8BIT *num_links)
Returns a copy of the RCT links for the given service. The returned list should be freed using ADB_Re...
Definition: ap_dbacc.c:6313
void ADB_DeleteServiceFromFavouriteList(U8BIT list_id, void *serv_ptr)
Removes the given service from the favourite list defined by the list id.
Definition: ap_dbacc.c:11584
void ADB_SetServiceHiddenFlag(void *s_ptr, BOOLEAN hidden)
Sets the hidden status of the given service, which means the service would not be presented to the us...
Definition: ap_dbacc.c:9988
U8BIT * ADB_GetCridString(void *c_ptr)
Returns the CRID string from the given CRID record. The returned value should not be freed...
Definition: ap_dbacc.c:10827
BOOLEAN ADB_GetServiceNewFlag(void *s_ptr)
Returns the status of the &#39;new&#39; flag of the given service. This flag indicates whether a service has ...
Definition: ap_dbacc.c:5883
void ADB_SetCridService(void *c_ptr, U16BIT serv_id)
Sets the service ID on the given CRID record.
Definition: ap_dbacc.c:10587
U8BIT ADB_GetEventStartHour(void *event_ptr)
Returns the hour (0-23) value for the start of the given event.
Definition: ap_dbacc.c:8843
void * ADB_LaterEvent(void *serv_ptr, U32DHMS time)
Returns a copy of the event following the given date/time on the given service.
Definition: ap_dbacc.c:8615
ADB_SERVICE_TYPE ADB_GetServiceType(void *s_ptr)
Returns the signalled type of the given service.
Definition: ap_dbacc.c:5595
E_STB_DP_FEC_LAYER ADB_GetServiceFecLayer(void *s_ptr, S_STB_DP_FEC_LAYER_INFO *fec_info)
Returns the FEC layer used for a service.
Definition: ap_dbacc.c:11877
U8BIT ** ADB_GetServiceListTransportNames(void **slist, U16BIT num_entries)
Allocates and returns a list of transport names for all the services in the given service list...
Definition: ap_dbacc.c:4847
void * ADB_EarlierEvent(void *serv_ptr, U32DHMS time)
Returns a copy of the event preceeding the given date/time on the given service.
Definition: ap_dbacc.c:8531
void ADB_SetSecondaryTextLang(U32BIT country_code, U8BIT lang_id)
Sets the secondary subtitle and teletext language to be used. This will be used if the primary langua...
Definition: ap_dbacc.c:7921
void ADB_GetLockedServiceList(void ***slist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all services that are marked as locked for parental control purposes...
Definition: ap_dbacc.c:3604
U8BIT ADB_GetTransportBwidth(void *t_ptr)
Returns the bandwidth value of the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2488
void ADB_GetReqdCcStreamSettings(void *s_ptr, BOOLEAN *valid, U32BIT *lang_code, BOOLEAN *digital_cc, U8BIT *caption_service, BOOLEAN *easy_reader, BOOLEAN *wide_aspect_ratio)
Returns the settings defined by ADB_SetReqdCcStreamSettings that will be used for CC on the given ser...
Definition: ap_dbacc.c:10406
U16BIT ADB_GetServicePCRPid(void *s_ptr)
Returns the PCR PID for the given service.
Definition: ap_dbacc.c:5265
U16BIT ADB_GetStreamTagContentType(void *stream_ptr, U8BIT index)
For the given stream and index into component tag array for stream, return stream content and compone...
Definition: ap_dbacc.c:7804
application level common header
void * ADB_GetEventService(void *event_ptr)
Returns the service pointer of event.
Definition: ap_dbacc.c:12674
void ADB_GetServiceIds(void *s_ptr, U16BIT *onet_id, U16BIT *trans_id, U16BIT *serv_id)
Returns the original network id, transport id and service id for the given service.
Definition: ap_dbacc.c:5083
void ADB_GetTransportCableTuningParams(void *t_ptr, U32BIT *freq_hz, E_STB_DP_CMODE *mode, U16BIT *symrate)
Returns the parameters needed to tune a cable tuner to a transport.
Definition: ap_dbacc.c:2891
U8BIT ADB_GetStreamNumCaptionServices(void *stream_ptr)
Returns the number of caption services values defined for the given stream.
Definition: ap_dbacc.c:7320
U8BIT * ADB_GetEventExtendedDescription(void *event_ptr)
Returns the extended event description text of the event as a UTF-8 string. The returned string shoul...
Definition: ap_dbacc.c:9201
E_STB_DP_AUDIO_CODEC ADB_GetAudioCodecFromStream(ADB_STREAM_TYPE audio_stream_type)
Derive audio codec from stream.
Definition: ap_dbacc.c:12610
U16BIT ADB_GetNetworkId(void *n_ptr)
Returns the network id of the given network.
Definition: ap_dbacc.c:1288
U32DHMS ADB_GetEventEndDateTime(void *event_ptr)
Returns a value representing the date and time of the end of the given event.
Definition: ap_dbacc.c:8935
U8BIT ** ADB_GetServiceListNetworkNames(void **slist, U16BIT num_entries)
Allocates and returns a list of network names for all the services in the given service list...
Definition: ap_dbacc.c:4800
U8BIT * ADB_GetServiceShortName(void *s_ptr, BOOLEAN use_pref_name)
Returns the short name of the given service as a UTF-8 string. The returned string should be freed us...
Definition: ap_dbacc.c:4965
U8BIT * ADB_GetTransportName(void *t_ptr)
Returns the name, in UTF-8 format, of the given transport. The returned name should be freed using ST...
Definition: ap_dbacc.c:2340
void * ADB_FindCridRecord(U8BIT *crid_str)
Searches for and returns the CRID record with the given CRID string.
Definition: ap_dbacc.c:10528
Definition: ap_dbacc.h:219
BOOLEAN ADB_GetEventDoNotScramble(void *event_ptr)
Returns the do_not_scramble flag for the event, which will have been found by looking backwards in th...
Definition: ap_dbacc.c:9417
void ADB_GetTransportServiceList(void *t_ptr, void ***slist_ptr, U16BIT *num_entries_ptr)
Allocates and returns a list of all services in the database on the given transport.
Definition: ap_dbacc.c:3433
void ADB_UpdateCridEitDate(void *c_ptr)
Updates the time the CRID was last seen in the EIT.
Definition: ap_dbacc.c:10665
void * ADB_GetNextServiceInList(U32BIT list_type, void *serv)
Returns the next service, in LCN order, for the given list type, starting from the given service...
Definition: ap_dbacc.c:3868
void ADB_GetEventSchedule(BOOLEAN include_old_events, void *serv_ptr, void ***elist_ptr, U16BIT *num_entries_ptr)
Allocates and returns an array containing copies of events for the given service from the service&#39;s E...
Definition: ap_dbacc.c:7994
BOOLEAN ADB_GetServiceIsHd(void *s_ptr)
Returns whether the service is signalled as an HD service.
Definition: ap_dbacc.c:5361
U8BIT ADB_GetEventDurationSecs(void *event_ptr)
Returns the seconds value (0-59) for the duration of the given event.
Definition: ap_dbacc.c:8925
U32BIT ADB_GetTtextStreamLangCode(void *stream_ptr)
Returns the 3 char language code of the given teletext stream.
Definition: ap_dbacc.c:7639
U16BIT ADB_GetEventId(void *event_ptr)
Returns the event id for the given event.
Definition: ap_dbacc.c:9330
BOOLEAN ADB_GetServiceLcnEditable(void *s_ptr)
Returns whether the LCN assigned to the given service can be changed.
Definition: ap_dbacc.c:10060
U8BIT ADB_GetStreamTag(void *stream_ptr, U8BIT index)
Returns the requested tag value of the given stream.
Definition: ap_dbacc.c:7291
U16BIT ADB_GetTransportSatelliteSymbolRate(void *t_ptr)
Returns the symbol rate of the given satellite transponder.
Definition: ap_dbacc.c:2776
BOOLEAN ADB_IsProgrammeCrid(void *c_ptr)
Returns TRUE if the CRID record given represents a programme (split event)
Definition: ap_dbacc.c:10684
U8BIT ADB_GetStreamComponentType(void *stream_ptr)
Returns the component type as defined in the EITp/f&#39;s component descriptor for the given stream...
Definition: ap_dbacc.c:7780
BOOLEAN ADB_IsSameEvent(void *event1_ptr, void *event2_ptr)
Checks whether the two events are the same. Not all fields are checked, just date, time, duration and event ID.
Definition: ap_dbacc.c:9509
void ADB_SetServiceListLockedFlag(void **slist, U16BIT num_entries, BOOLEAN locked)
Sets the locked state of all services in the given service list.
Definition: ap_dbacc.c:4727
U8BIT * ADB_GetNetworkNameByLang(void *n_ptr, U8BIT lang)
Returns the name in the language defined by lang, in UTF-8 format, of the given network. The returned name should be freed using STB_ReleaseUnicodeString.
Definition: ap_dbacc.c:1268
U8BIT ADB_GetTtextStreamType(void *stream_ptr)
Returns the type, as defined in the PMT, of the given teletext stream.
Definition: ap_dbacc.c:7659
U16BIT ADB_GetServiceAudioPid(void *s_ptr)
Returns the audio PID for the given service. This will be the one chosen based on the settings for la...
Definition: ap_dbacc.c:5290
BOOLEAN ADB_GetStreamHasCaDesc(void *stream_ptr)
Returns whether the given stream has a CA descriptor.
Definition: ap_dbacc.c:7558
void ADB_ServiceAddRCTLink(void *serv_ptr, void *link_ptr)
Adds the given RCT link info to the end of the list of existing RCT links already defined for the giv...
Definition: ap_dbacc.c:6211
U16BIT ADB_GetServicePmtPid(void *s_ptr)
Returns the current PMT PID for the given service.
Definition: ap_dbacc.c:11764
U8BIT * ADB_GetEventName(void *event_ptr)
Returns the name of the event as a UTF-8 string. The returned string should be freed using STB_Releas...
Definition: ap_dbacc.c:9100
BOOLEAN ADB_ImportDB(U8BIT *filename)
Imports the database from an XML file.
Definition: ap_dbxml.c:325
U16BIT ADB_GetNumDeletedServices(E_STB_DP_SIGNAL_TYPE tuner_type)
Returns the number of services marked as deleted with the given tuner type.
Definition: ap_dbacc.c:3387
U16BIT ADB_GetNumFavouriteLists(void)
Returns the number of favourite lists.
Definition: ap_dbacc.c:11170
void ADB_ReleaseEventList(void **elist, U16BIT num_entries)
Frees all teh events in the given list and all associated memory for those events.
Definition: ap_dbacc.c:8284
U16BIT ADB_GetFreesatServiceId(void *s_ptr)
Returns Freesat service ID of the given service.
Definition: ap_dbacc.c:6015
BOOLEAN ADB_GetStreamInUse(void *stream_ptr)
Returns whether the given stream is marked as being &#39;in use&#39;, which means it will be the stream being...
Definition: ap_dbacc.c:7510
void ADB_DeleteCridRecord(void *c_ptr)
Deletes the given CRID record from the database.
Definition: ap_dbacc.c:10946
void * ADB_AddLNB(ADB_LNB_SETTINGS *settings)
Creates a new LNB in the database with the given settings.
Definition: ap_dbacc.c:641
void ADB_SortServiceListAlphabetically(void **slist, U16BIT num_entries, BOOLEAN short_name)
Sorts the given list of services into alphabetical order. Case is significant.
Definition: ap_dbacc.c:3733
U8BIT * ADB_GetNetworkName(void *n_ptr)
Returns the name, in UTF-8 format, of the given network. The returned name should be freed using STB_...
Definition: ap_dbacc.c:1246
U8BIT ADB_GetEventNumSeriesCrids(void *event_ptr)
Returns the number of series CRIDs for the given event.
Definition: ap_dbacc.c:9740
void ADB_ResetDatabase(void)
Clears the service database and resets everything to defaults values.
Definition: ap_dbacc.c:487
U8BIT * ADB_GetServiceFullName(void *s_ptr, BOOLEAN use_pref_name)
Returns the full name of the given service as a UTF-8 string. The returned string should be freed usi...
Definition: ap_dbacc.c:4934
void ADB_SetCridProgrammeName(void *c_ptr, U8BIT *prog_name)
Sets the programme name field of the given CRID record.
Definition: ap_dbacc.c:10611
void ADB_DeleteServiceRec(void *s_ptr)
Deletes the given service from the database.
Definition: ap_dbacc.c:6787
BOOLEAN ADB_ServiceHasSubtitles(void *serv_ptr, E_SUBTITLE_FORMAT *subs_format)
Determines whether the given service has subtitles, DVB or teletext.
Definition: ap_dbacc.c:6904
void ADB_GetEventScheduleByGenre(ADB_EVENT_CONTENT genre, BOOLEAN include_old_events, void *serv_ptr, void ***elist_ptr, U16BIT *num_entries_ptr)
Creates a copy of the event schedule for the given service, but only includes events of the given gen...
Definition: ap_dbacc.c:8127
void * ADB_AddCridRecord(U8BIT *crid, BOOLEAN series, BOOLEAN recommended)
Adds a CRID record to the database; use ADB_SaveCridRecord to store it If a CRID record with the give...
Definition: ap_dbacc.c:10484
void ADB_SetServiceDeletedFlag(void *s_ptr, BOOLEAN deleted)
Sets the &#39;deleted&#39; flag for the given service as a deleted service. If it&#39;s marked as deleted then it...
Definition: ap_dbacc.c:10084
ADB_STREAM_TYPE ADB_GetStreamType(void *stream_ptr)
Returns the type of the given stream.
Definition: ap_dbacc.c:7246
U8BIT * ADB_GetServiceProviderName(void *s_ptr)
Returns the provider name, as a UTF-8 string, using the default language, of the given service...
Definition: ap_dbacc.c:5620
BOOLEAN ADB_GetTransportSearchFlag(void *t_ptr)
Returns whether a transport has been used during a service scan operation.
Definition: ap_dbacc.c:2245
void ADB_GetTransportTerrestrialTuningParams(void *t_ptr, E_STB_DP_TTYPE *terr_type, U32BIT *freq_hz, E_STB_DP_TMODE *mode, E_STB_DP_TBWIDTH *bwidth, U8BIT *plp_id)
Returns the settings to tune to the given DVB-T/T2 transport.
Definition: ap_dbacc.c:2811
void ADB_SetTunedTransport(U8BIT path, void *t_ptr)
Sets the given transport as the one tuned to on the given decode path. The transport&#39;s network is als...
Definition: ap_dbacc.c:3023
BOOLEAN ADB_GetCridDoNotDelete(void *c_ptr)
Returns the value of the do not delete flag for the given CRID record.
Definition: ap_dbacc.c:10797
U32BIT * ADB_GetServiceListTransportStrengths(void **slist, U16BIT num_entries)
Allocates and returns an array of the signal strengths of the transports containing the given list of...
Definition: ap_dbacc.c:4888
Header file - Function prototypes for tuner control.
E_STB_DP_VIDEO_CODEC ADB_GetVideoCodecFromStream(ADB_STREAM_TYPE video_stream_type)
Derive video codec from stream.
Definition: ap_dbacc.c:12647
BOOLEAN ADB_IsSplitProgrammeCrid(U8BIT *crid)
Returns TRUE if the given CRID represents a split event (i.e. it contains an Instance Metadata Identi...
Definition: ap_dbacc.c:9579
E_STB_DP_SIGNAL_TYPE ADB_GetServiceSignalType(void *s_ptr, BOOLEAN *is_sig2)
Returns the signal type for transport of given service. It also indicates the mode (T2...
Definition: ap_dbacc.c:3814
void ADB_ReleaseEventData(void *event_ptr)
Frees any memory allocated for the given event and the event itself.
Definition: ap_dbacc.c:8267