libdvbpsi
2.0.0-git
MPEG Transport Stream PSI table parser
|
Application interface for the PMT decoder and the PMT generator. More...
Go to the source code of this file.
Data Structures | |
struct | dvbpsi_pmt_es_s |
PMT ES structure. More... | |
struct | dvbpsi_pmt_s |
PMT structure. More... | |
Typedefs | |
typedef struct dvbpsi_pmt_es_s | dvbpsi_pmt_es_t |
dvbpsi_pmt_es_t type definition. | |
typedef struct dvbpsi_pmt_s | dvbpsi_pmt_t |
dvbpsi_pmt_t type definition. | |
typedef void(* | dvbpsi_pmt_callback) (void *p_priv, dvbpsi_pmt_t *p_new_pmt) |
Callback type definition. | |
Functions | |
bool | dvbpsi_pmt_attach (dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension, dvbpsi_pmt_callback pf_callback, void *p_priv) |
void | dvbpsi_pmt_detach (dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension) |
Destroy a PMT decoder. More... | |
void | dvbpsi_pmt_init (dvbpsi_pmt_t *p_pmt, uint16_t i_program_number, uint8_t i_version, bool b_current_next, uint16_t i_pcr_pid) |
Initialize a user-allocated dvbpsi_pmt_t structure. More... | |
dvbpsi_pmt_t * | dvbpsi_pmt_new (uint16_t i_program_number, uint8_t i_version, bool b_current_next, uint16_t i_pcr_pid) |
Allocate and initialize a new dvbpsi_pmt_t structure. More... | |
void | dvbpsi_pmt_empty (dvbpsi_pmt_t *p_pmt) |
Clean a dvbpsi_pmt_t structure. More... | |
void | dvbpsi_pmt_delete (dvbpsi_pmt_t *p_pmt) |
Clean and free a dvbpsi_pmt_t structure. More... | |
dvbpsi_descriptor_t * | dvbpsi_pmt_descriptor_add (dvbpsi_pmt_t *p_pmt, uint8_t i_tag, uint8_t i_length, uint8_t *p_data) |
Add a descriptor in the PMT. More... | |
dvbpsi_pmt_es_t * | dvbpsi_pmt_es_add (dvbpsi_pmt_t *p_pmt, uint8_t i_type, uint16_t i_pid) |
Add an ES in the PMT. More... | |
dvbpsi_descriptor_t * | dvbpsi_pmt_es_descriptor_add (dvbpsi_pmt_es_t *p_es, uint8_t i_tag, uint8_t i_length, uint8_t *p_data) |
Add a descriptor in the PMT ES. More... | |
dvbpsi_psi_section_t * | dvbpsi_pmt_sections_generate (dvbpsi_t *p_dvbpsi, dvbpsi_pmt_t *p_pmt) |
Application interface for the PMT decoder and the PMT generator.
>
Application interface for the PMT decoder and the PMT generator. New decoded PMT tables are sent by callback to the application.
void dvbpsi_pmt_delete | ( | dvbpsi_pmt_t * | p_pmt | ) |
Clean and free a dvbpsi_pmt_t structure.
p_pmt | pointer to the PMT structure |
dvbpsi_descriptor_t * dvbpsi_pmt_descriptor_add | ( | dvbpsi_pmt_t * | p_pmt, |
uint8_t | i_tag, | ||
uint8_t | i_length, | ||
uint8_t * | p_data | ||
) |
Add a descriptor in the PMT.
p_pmt | pointer to the PMT structure |
i_tag | descriptor's tag |
i_length | descriptor's length |
p_data | descriptor's data |
void dvbpsi_pmt_detach | ( | dvbpsi_t * | p_dvbpsi, |
uint8_t | i_table_id, | ||
uint16_t | i_extension | ||
) |
Destroy a PMT decoder.
p_dvbpsi | handle |
i_table_id | Table ID |
i_extension | Normally Table ID extension number, but for PMT's it is the program_number; |
The handle isn't valid any more.
void dvbpsi_pmt_empty | ( | dvbpsi_pmt_t * | p_pmt | ) |
Clean a dvbpsi_pmt_t structure.
p_pmt | pointer to the PMT structure |
dvbpsi_pmt_es_t * dvbpsi_pmt_es_add | ( | dvbpsi_pmt_t * | p_pmt, |
uint8_t | i_type, | ||
uint16_t | i_pid | ||
) |
Add an ES in the PMT.
p_pmt | pointer to the PMT structure |
i_type | type of ES |
i_pid | PID of the ES |
dvbpsi_descriptor_t * dvbpsi_pmt_es_descriptor_add | ( | dvbpsi_pmt_es_t * | p_es, |
uint8_t | i_tag, | ||
uint8_t | i_length, | ||
uint8_t * | p_data | ||
) |
Add a descriptor in the PMT ES.
p_es | pointer to the ES structure |
i_tag | descriptor's tag |
i_length | descriptor's length |
p_data | descriptor's data |
void dvbpsi_pmt_init | ( | dvbpsi_pmt_t * | p_pmt, |
uint16_t | i_program_number, | ||
uint8_t | i_version, | ||
bool | b_current_next, | ||
uint16_t | i_pcr_pid | ||
) |
Initialize a user-allocated dvbpsi_pmt_t structure.
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 |
dvbpsi_pmt_t * dvbpsi_pmt_new | ( | uint16_t | i_program_number, |
uint8_t | i_version, | ||
bool | b_current_next, | ||
uint16_t | i_pcr_pid | ||
) |
Allocate and initialize a new dvbpsi_pmt_t structure.
i_program_number | program number |
i_version | PMT version |
b_current_next | current next indicator |
i_pcr_pid | PCR_PID |