Application interface for the PMT decoder and the PMT generator.
More...
Go to the source code of this file.
Macros |
#define | dvbpsi_NewPMT(p_pmt, i_program_number,i_version, b_current_next, i_pcr_pid) |
| Allocate and initialize a new dvbpsi_pmt_t structure.
|
#define | dvbpsi_DeletePMT(p_pmt) |
| Clean and free a dvbpsi_pmt_t structure.
|
Functions |
| __attribute__ ((deprecated)) dvbpsi_handle dvbpsi_AttachPMT(uint16_t i_program_number |
Variables |
dvbpsi_pmt_callback | pf_callback |
dvbpsi_pmt_callback void * | p_cb_data |
uint16_t | i_program_number |
uint16_t uint8_t | i_version |
uint16_t uint8_t int | b_current_next |
uint16_t uint8_t int uint16_t | i_pcr_pid |
uint8_t | i_tag |
uint8_t uint8_t | i_length |
uint8_t uint8_t uint8_t * | p_data |
uint8_t | i_type |
uint8_t uint16_t | i_pid |
Detailed Description
Application interface for the PMT decoder and the PMT generator.
>
- Author:
- Arnaud de Bossoreille de Ribou bozo@.nosp@m.via..nosp@m.ecp.f.nosp@m.r Application interface for the PMT decoder and the PMT generator. New decoded PMT tables are sent by callback to the application.
Macro Definition Documentation
#define dvbpsi_DeletePMT |
( |
|
p_pmt | ) |
|
Value:do { \
dvbpsi_EmptyPMT(p_pmt); \
free(p_pmt); \
} while(0);
Clean and free a dvbpsi_pmt_t structure.
- Parameters:
-
p_pmt | pointer to the PMT structure |
- Returns:
- nothing.
#define dvbpsi_NewPMT |
( |
|
p_pmt, |
|
|
|
i_program_number, |
|
|
|
i_version, |
|
|
|
b_current_next, |
|
|
|
i_pcr_pid |
|
) |
| |
Value:do { \
if(p_pmt != NULL) \
dvbpsi_InitPMT(p_pmt, i_program_number, i_version, b_current_next, \
i_pcr_pid); \
} while(0);
Allocate and initialize a new dvbpsi_pmt_t structure.
- Parameters:
-
p_pmt | pointer to the PMT structure |
i_program_number | program number |
i_version | PMT version |
b_current_next | current next indicator |
i_pcr_pid | PCR_PID |
- Returns:
- nothing.