Application interface for the SDT decoder and the SDT generator.
More...
Go to the source code of this file.
Macros |
#define | dvbpsi_NewSDT(p_sdt, i_ts_id, i_version, b_current_next, i_network_id) |
| Allocate and initialize a new dvbpsi_sdt_t structure.
|
#define | dvbpsi_DeleteSDT(p_sdt) |
| Clean and free a dvbpsi_sdt_t structure.
|
Variables |
uint8_t | i_table_id |
uint8_t uint16_t | i_extension |
uint8_t uint16_t
dvbpsi_sdt_callback | pf_callback |
uint8_t uint16_t
dvbpsi_sdt_callback void * | p_cb_data |
uint16_t | i_ts_id |
uint16_t uint8_t | i_version |
uint16_t uint8_t int | b_current_next |
uint16_t uint8_t int uint16_t | i_network_id |
uint16_t | i_service_id |
uint16_t int | b_eit_schedule |
uint16_t int int | b_eit_present |
uint16_t int int uint8_t | i_running_status |
uint16_t int int uint8_t int | b_free_ca |
uint8_t | i_tag |
uint8_t uint8_t | i_length |
uint8_t uint8_t uint8_t * | p_data |
Detailed Description
Application interface for the SDT decoder and the SDT generator.
>
- Author:
- Johan Bilien jobi@.nosp@m.via..nosp@m.ecp.f.nosp@m.r Application interface for the SDT decoder and the SDT generator. New decoded SDT tables are sent by callback to the application.
Macro Definition Documentation
#define dvbpsi_DeleteSDT |
( |
|
p_sdt | ) |
|
Value:do { \
dvbpsi_EmptySDT(p_sdt); \
free(p_sdt); \
} while(0);
Clean and free a dvbpsi_sdt_t structure.
- Parameters:
-
p_sdt | pointer to the SDT structure |
- Returns:
- nothing.
#define dvbpsi_NewSDT |
( |
|
p_sdt, |
|
|
|
i_ts_id, |
|
|
|
i_version, |
|
|
|
b_current_next, |
|
|
|
i_network_id |
|
) |
| |
Value:do { \
if(p_sdt != NULL) \
dvbpsi_InitSDT(p_sdt, i_ts_id, i_version, b_current_next, i_network_id); \
} while(0);
Allocate and initialize a new dvbpsi_sdt_t structure.
- Parameters:
-
p_sdt | pointer to the SDT structure |
i_ts_id | transport stream ID |
i_version | SDT version |
b_current_next | current next indicator |
i_network_id | original network id |
- Returns:
- nothing.