Application interface for the CAT decoder and the CAT generator.
More...
Go to the source code of this file.
Macros |
#define | dvbpsi_NewCAT(p_cat,i_version, b_current_next) |
| Allocate and initialize a new dvbpsi_cat_t structure.
|
#define | dvbpsi_DeleteCAT(p_cat) |
| Clean and free a dvbpsi_cat_t structure.
|
Functions |
| __attribute__ ((deprecated)) dvbpsi_handle dvbpsi_AttachCAT(dvbpsi_cat_callback pf_callback |
Variables |
void * | p_cb_data |
uint8_t | i_version |
uint8_t int | b_current_next |
uint8_t | i_tag |
uint8_t uint8_t | i_length |
uint8_t uint8_t uint8_t * | p_data |
Detailed Description
Application interface for the CAT decoder and the CAT generator.
>
- Author:
- Arnaud de Bossoreille de Ribou bozo@.nosp@m.via..nosp@m.ecp.f.nosp@m.r Application interface for the CAT decoder and the CAT generator. New decoded CAT tables are sent by callback to the application.
Macro Definition Documentation
#define dvbpsi_DeleteCAT |
( |
|
p_cat | ) |
|
Value:do { \
dvbpsi_EmptyCAT(p_cat); \
free(p_cat); \
} while(0);
Clean and free a dvbpsi_cat_t structure.
- Parameters:
-
p_cat | pointer to the CAT structure |
- Returns:
- nothing.
#define dvbpsi_NewCAT |
( |
|
p_cat, |
|
|
|
i_version, |
|
|
|
b_current_next |
|
) |
| |
Value:do { \
if(p_cat != NULL) \
dvbpsi_InitCAT(p_cat, i_version, b_current_next); \
} while(0);
Allocate and initialize a new dvbpsi_cat_t structure.
- Parameters:
-
p_cat | pointer to the CAT structure |
i_version | CAT version |
b_current_next | current next indicator |
- Returns:
- nothing.