DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2004 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00024 // pre-processor mechanism so multiple inclusions don't cause compilation error 00025 #ifndef _AP_SI_H 00026 #define _AP_SI_H 00027 00028 //---Constant and macro definitions for public use----------------------------- 00029 00030 //---Enumerations for public use----------------------------------------------- 00031 00032 typedef enum 00033 { 00034 APP_SI_MODE_NO_SI, 00035 APP_SI_MODE_CHANNEL_SEARCH, // use STB_DPSetSearchMode(0, TRUE); 00036 APP_SI_MODE_CHANNEL_SEARCH_NO_NIT, // use STB_DPSetSearchMode(0, TRUE); 00037 APP_SI_MODE_STARTUP_SEARCH, // use STB_DPSetSearchMode(0, TRUE); 00038 APP_SI_MODE_EVENT_SCHED_SEARCH, // use STB_DPSetSearchMode(0, TRUE); 00039 APP_SI_MODE_DVB_SSU_SEARCH, // use STB_DPSetSearchMode(0, TRUE); 00040 APP_SI_MODE_UPDATE, // use STB_DPSetSearchMode(0, FALSE); 00041 APP_SI_MODE_CIPLUS_UPDATE, // use STB_DPSetSearchMode(0, FALSE); 00042 APP_SI_MODE_CIPLUS_NO_PAT_PMT, // use STB_DPSetSearchMode(0, FALSE); 00043 APP_SI_MODE_TOT_SEARCH, // use STB_DPSetSearchMode(0, TRUE); 00044 APP_SI_MODE_USER_DEFINED 00045 } E_APP_SI_MODE; 00046 00047 typedef enum 00048 { 00049 SEARCH_SERVICE_TYPE_ALL, 00050 SEARCH_SERVICE_TYPE_FTA, 00051 SEARCH_SERVICE_TYPE_SCRAMBLED 00052 } E_SEARCH_SERVICE_TYPE; 00053 00054 /* Events passed to SI managers */ 00055 typedef enum 00056 { 00057 APP_SI_START_MANAGER = 0x0001, 00058 APP_SI_STOP_MANAGER = 0x0002, 00059 APP_SI_CHANNEL_CHANGE = 0x0003, 00060 00061 APP_SI_PAT_RECEIVED = 0x0011, 00062 APP_SI_PMT_RECEIVED = 0x0012, 00063 APP_SI_SDT_RECEIVED = 0x0013, 00064 APP_SI_NIT_RECEIVED = 0x0014, 00065 APP_SI_EIT_RECEIVED = 0x0015, 00066 APP_SI_TOT_RECEIVED = 0x0016, 00067 APP_SI_TDT_RECEIVED = 0x0017, 00068 APP_SI_CAT_RECEIVED = 0x0018, 00069 APP_SI_RCT_RECEIVED = 0x0019, 00070 APP_SI_AIT_RECEIVED = 0x001A, 00071 APP_SI_BAT_RECEIVED = 0x0020, 00072 00073 APP_SI_PAT_TIMEOUT = 0x0031, 00074 APP_SI_PMT_TIMEOUT = 0x0032, 00075 APP_SI_SDT_TIMEOUT = 0x0033, 00076 APP_SI_NIT_TIMEOUT = 0x0034, 00077 APP_SI_EIT_TIMEOUT = 0x0035, 00078 APP_SI_TOT_TIMEOUT = 0x0036, 00079 APP_SI_TDT_TIMEOUT = 0x0037, 00080 APP_SI_CAT_TIMEOUT = 0x0038, 00081 APP_SI_SCHED_TIMEOUT = 0x0039, 00082 APP_SI_BAT_TIMEOUT = 0x0040, 00083 00084 APP_SI_PMT_UPDATE = 0x0051, 00085 APP_SI_UPDATE_DELAY_EXPIRED = 0x0052, 00086 APP_SI_STOP_PMT_REPORTING = 0x0053, 00087 00088 APP_SI_USER_DEFINED_EVENT = 0x0100 00089 } E_APP_SI_EVENT_CODE; 00090 00091 //---Global type defs for public use------------------------------------------- 00092 typedef BOOLEAN (*F_SIManager)(U8BIT, U32BIT, SI_TABLE_RECORD *); /* Type of SI manager function */ 00093 typedef void (*F_EitParser)(U8BIT, U8BIT, U8BIT *, U32BIT, void *); 00094 typedef void (*F_BatTableUpdate)(U8BIT, SI_BAT_TABLE *); 00095 typedef void (*F_NitTableUpdate)(U8BIT, SI_NIT_TABLE *); 00096 typedef void (*F_PmtTableUpdate)(U8BIT, SI_PMT_TABLE *, void *); 00097 00098 //---Global Function prototypes for public use--------------------------------- 00099 00106 BOOLEAN ASI_CheckForServiceChange(void); 00107 00112 void ASI_SetSearchServiceType(E_SEARCH_SERVICE_TYPE service_type); 00113 00119 void ASI_AddServiceToPmtList(U16BIT service_id); 00120 00125 void ASI_RemoveServiceFromPmtList(U16BIT service_id); 00126 00130 void ASI_ClearPmtList(void); 00131 00140 void ASI_ProcessPmt(U8BIT path, void *s_ptr, U8BIT *pmt_data); 00141 00148 void ASI_SetEITScheduleLimit(U16BIT limit_hours); 00149 00154 U16BIT ASI_GetEITScheduleLimit(void); 00155 00164 void ASI_EnableBatCollection(BOOLEAN use_bats, U16BIT *bouquet_ids, U16BIT num_ids); 00165 00175 BOOLEAN ASI_GetDvbSsuStatus(U16BIT *onid_ptr, U16BIT *tid_ptr, U16BIT *sid_ptr); 00176 00181 void ASI_RefuseSSU(BOOLEAN refuse); 00182 00187 BOOLEAN ASI_SSURefused(void); 00188 00193 void ASI_SSUSetMandatory(BOOLEAN mandatory); 00194 00199 BOOLEAN ASI_SSUGetMandatory(void); 00200 00201 00202 //---Global Function prototypes for internal use--------------------------------- 00206 void ASI_InitialiseAppSi(void); 00207 00213 void ASI_SetAppSiMode(U8BIT path, E_APP_SI_MODE si_mode); 00214 00222 U16BIT ASI_GetPmtPid(U16BIT serv_id, U16BIT ts_id, U16BIT on_id); 00223 00227 void ASI_StopPmtReporting(U8BIT path); 00228 00234 BOOLEAN ASI_PmtReported(U8BIT path); 00235 00242 void ASI_SetStandbyState(BOOLEAN standby_state); 00243 00249 void ASI_RestartCatFilter(U8BIT path); 00250 00259 void ASI_RestartSITables(U8BIT path, BOOLEAN use_standard_pids); 00260 00266 void ASI_SetEITParserFunction(F_EitParser parser_func); 00267 00273 void ASI_SetUpdateBatFunction(F_BatTableUpdate update_func); 00274 00280 void ASI_SetUpdateNitFunction(F_NitTableUpdate update_func); 00281 00287 void ASI_SetUpdatePmtFunction(F_PmtTableUpdate update_func); 00288 00294 void ASI_ProcessEitTable(SI_TABLE_RECORD *table_rec, BOOLEAN playback); 00295 00296 #endif