DVBCore
1.0
Open source DVB engine
|
Header file - macros and function prototypes for public use. More...
Go to the source code of this file.
Data Structures | |
struct | si_section_record |
struct | si_table_record |
Defines | |
#define | SI_BUFFER_1K 1024 |
#define | SI_BUFFER_2K 2048 |
#define | SI_BUFFER_4K 4096 |
#define | SI_BUFFER_8K 8192 |
#define | SI_BUFFER_16K 16384 |
#define | SI_BUFFER_32K 32768 |
#define | SI_BUFFER_64K 65535 |
#define | SI_XTID_MATCH_DONT_CARE 0x0000 |
#define | SI_XTID_MASK_DONT_CARE 0x0000 |
Typedefs | |
typedef struct si_section_record | SI_SECTION_RECORD |
typedef struct si_table_record | SI_TABLE_RECORD |
typedef void(* | F_AppSiEventHandler )(U8BIT, E_APP_SI_EVENT_TYPE) |
Enumerations | |
enum | E_APP_SI_EVENT_TYPE { STOP_SI, START_SI_SEARCHING, START_SI_UPDATING_NEW_TRANSPORT, START_SI_UPDATING_SAME_TRANSPORT, SI_TIMEOUT } |
enum | E_SI_REQUEST_TYPE { ONE_SHOT_REQUEST, CONTINUOUS_REQUEST } |
enum | E_SI_TABLE_FORMAT_TYPE { SINGLE_SECT, MULTI_SECT } |
Functions | |
void | STB_SIReportCurrentPmt (U16BIT service_id, SI_TABLE_RECORD *table_rec, BOOLEAN new_serv, BOOLEAN new_pmt_version) |
F_AppSiEventHandler | STB_SIRegisterAppSiEventHandler (F_AppSiEventHandler func_ptr) |
Registers a function to be called to handle SI events. The currently registered event handler is returned, which allows a module to override the existing function and reset it. | |
void * | STB_SIRequestTable (U8BIT path, U16BIT pid, U8BIT tid_match, U8BIT tid_mask, E_SI_TABLE_FORMAT_TYPE format, U16BIT expected_tables, U16BIT xtid_match, U16BIT xtid_mask, E_SI_REQUEST_TYPE req_type, U16BIT buff_size, BOOLEAN crc, BOOLEAN low_priority, void(*callback)(void *, U32BIT, SI_TABLE_RECORD *), U32BIT ret_param) |
void | STB_SIModifyTableRequest (void *filter_handle, U8BIT tid_match, U8BIT tid_mask, U16BIT xtid_match, U16BIT xtid_mask, U16BIT expected_tables) |
void | STB_SIRestartTableRequest (void *filter_handle) |
void | STB_SICancelTableRequest (void *filter_ptr) |
void | STB_SIReleaseTableRecord (SI_TABLE_RECORD *table_rec) |
void | STB_SISearchComplete (U8BIT path, BOOLEAN success, void *event_data, U32BIT data_size) |
BOOLEAN | STB_SIReportCat (SI_TABLE_RECORD *table_rec) |
Reports the CAT has been received so it can be passed on to other modules. | |
BOOLEAN | STB_SIReportBat (SI_TABLE_RECORD *table_rec) |
Reports the BAT has been received so it can be passed on to other modules. | |
BOOLEAN | STB_SIReportNit (SI_TABLE_RECORD *table_rec) |
Reports the NIT has been received so it can be passed on to other modules. |
Header file - macros and function prototypes for public use.
F_AppSiEventHandler STB_SIRegisterAppSiEventHandler | ( | F_AppSiEventHandler | func_ptr | ) |
Registers a function to be called to handle SI events. The currently registered event handler is returned, which allows a module to override the existing function and reset it.
func_ptr | function being registered to handle SI events |
BOOLEAN STB_SIReportBat | ( | SI_TABLE_RECORD * | table_rec | ) |
Reports the BAT has been received so it can be passed on to other modules.
table_rec | - table record containing the BAT section data |
BOOLEAN STB_SIReportCat | ( | SI_TABLE_RECORD * | table_rec | ) |
Reports the CAT has been received so it can be passed on to other modules.
table_rec | - table record containing the CAT section data |
BOOLEAN STB_SIReportNit | ( | SI_TABLE_RECORD * | table_rec | ) |
Reports the NIT has been received so it can be passed on to other modules.
table_rec | - table record containing the NIT section data |