Commit e8dfd3f1 authored by Jean-Paul Saman's avatar Jean-Paul Saman

ATSC VCT: Rename API's

parent 911ec44e
...@@ -694,7 +694,7 @@ static void handle_subtable(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_e ...@@ -694,7 +694,7 @@ static void handle_subtable(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_e
break; break;
case 0xC8: case 0xC8:
case 0xC9: /* ATSC VCT */ case 0xC9: /* ATSC VCT */
if (!dvbpsi_atsc_AttachVCT(p_dvbpsi, i_table_id, i_extension, handle_atsc_VCT, p_data)) if (!dvbpsi_atsc_vct_attach(p_dvbpsi, i_table_id, i_extension, handle_atsc_VCT, p_data))
fprintf(stderr, "dvbinfo: Failed to attach ATSC VCT subdecoder\n"); fprintf(stderr, "dvbinfo: Failed to attach ATSC VCT subdecoder\n");
break; break;
case 0xCB: /* ATSC EIT */ case 0xCB: /* ATSC EIT */
...@@ -2056,7 +2056,7 @@ static void handle_atsc_VCT(void* p_data, dvbpsi_atsc_vct_t *p_vct) ...@@ -2056,7 +2056,7 @@ static void handle_atsc_VCT(void* p_data, dvbpsi_atsc_vct_t *p_vct)
DumpAtscVCTChannels(p_vct->p_first_channel); DumpAtscVCTChannels(p_vct->p_first_channel);
DumpDescriptors("\t | ]", p_vct->p_first_descriptor); DumpDescriptors("\t | ]", p_vct->p_first_descriptor);
dvbpsi_atsc_DeleteVCT(p_vct); dvbpsi_atsc_vct_delete(p_vct);
} }
static void DumpATSCEITEventDescriptors(dvbpsi_atsc_eit_event_t *p_atsc_eit_event) static void DumpATSCEITEventDescriptors(dvbpsi_atsc_eit_event_t *p_atsc_eit_event)
...@@ -2374,7 +2374,7 @@ static void DeleteTableDecoder(dvbpsi_t *p_dvbpsi, uint8_t i_table, uint16_t i_e ...@@ -2374,7 +2374,7 @@ static void DeleteTableDecoder(dvbpsi_t *p_dvbpsi, uint8_t i_table, uint16_t i_e
/* Handle ATSC PSI tables */ /* Handle ATSC PSI tables */
case 0xC7: dvbpsi_atsc_mgt_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC MGT */ case 0xC7: dvbpsi_atsc_mgt_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC MGT */
case 0xC8: /* ATSC VCT */ case 0xC8: /* ATSC VCT */
case 0xC9: dvbpsi_atsc_DetachVCT(p_dvbpsi, i_table, i_extension); break; /* ATSC VCT */ case 0xC9: dvbpsi_atsc_vct_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC VCT */
case 0xCB: dvbpsi_atsc_eit_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC EIT */ case 0xCB: dvbpsi_atsc_eit_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC EIT */
case 0xCC: dvbpsi_atsc_ett_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC ETT */ case 0xCC: dvbpsi_atsc_ett_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC ETT */
case 0xCD: dvbpsi_atsc_stt_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC STT */ case 0xCD: dvbpsi_atsc_stt_detach(p_dvbpsi, i_table, i_extension); break; /* ATSC STT */
......
...@@ -88,11 +88,11 @@ static void dvbpsi_atsc_DecodeVCTSections(dvbpsi_atsc_vct_t* p_vct, ...@@ -88,11 +88,11 @@ static void dvbpsi_atsc_DecodeVCTSections(dvbpsi_atsc_vct_t* p_vct,
dvbpsi_psi_section_t* p_section); dvbpsi_psi_section_t* p_section);
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_AttachVCT * dvbpsi_atsc_vct_attach
***************************************************************************** *****************************************************************************
* Initialize a VCT subtable decoder. * Initialize a VCT subtable decoder.
*****************************************************************************/ *****************************************************************************/
bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension, bool dvbpsi_atsc_vct_attach(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension,
dvbpsi_atsc_vct_callback pf_vct_callback, void* p_cb_data) dvbpsi_atsc_vct_callback pf_vct_callback, void* p_cb_data)
{ {
assert(p_dvbpsi); assert(p_dvbpsi);
...@@ -132,11 +132,11 @@ bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_ex ...@@ -132,11 +132,11 @@ bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_ex
} }
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_DetachVCT * dvbpsi_atsc_vct_detach
***************************************************************************** *****************************************************************************
* Close a VCT decoder. * Close a VCT decoder.
*****************************************************************************/ *****************************************************************************/
void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension) void dvbpsi_atsc_vct_detach(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension)
{ {
assert(p_dvbpsi); assert(p_dvbpsi);
...@@ -162,33 +162,33 @@ void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_ex ...@@ -162,33 +162,33 @@ void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_ex
dvbpsi_atsc_vct_decoder_t* p_vct_decoder = (dvbpsi_atsc_vct_decoder_t*)p_dec; dvbpsi_atsc_vct_decoder_t* p_vct_decoder = (dvbpsi_atsc_vct_decoder_t*)p_dec;
if (p_vct_decoder->p_building_vct) if (p_vct_decoder->p_building_vct)
dvbpsi_atsc_DeleteVCT(p_vct_decoder->p_building_vct); dvbpsi_atsc_vct_delete(p_vct_decoder->p_building_vct);
p_vct_decoder->p_building_vct = NULL; p_vct_decoder->p_building_vct = NULL;
dvbpsi_decoder_delete(p_dec); dvbpsi_decoder_delete(p_dec);
p_dec = NULL; p_dec = NULL;
} }
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_NewVCT * dvbpsi_atsc_vct_new
***************************************************************************** *****************************************************************************
* Allocate a new dvbpsi_atsc_vct_t structure and initialize it. * Allocate a new dvbpsi_atsc_vct_t structure and initialize it.
*****************************************************************************/ *****************************************************************************/
dvbpsi_atsc_vct_t *dvbpsi_atsc_NewVCT(uint8_t i_table_id, uint16_t i_extension, dvbpsi_atsc_vct_t *dvbpsi_atsc_vct_new(uint8_t i_table_id, uint16_t i_extension,
uint8_t i_protocol, bool b_cable_vct, uint8_t i_version, bool b_current_next) uint8_t i_protocol, bool b_cable_vct, uint8_t i_version, bool b_current_next)
{ {
dvbpsi_atsc_vct_t *p_vct = (dvbpsi_atsc_vct_t*)malloc(sizeof(dvbpsi_atsc_vct_t)); dvbpsi_atsc_vct_t *p_vct = (dvbpsi_atsc_vct_t*)malloc(sizeof(dvbpsi_atsc_vct_t));
if (p_vct != NULL) if (p_vct != NULL)
dvbpsi_atsc_InitVCT(p_vct, i_table_id, i_extension, i_protocol, dvbpsi_atsc_vct_init(p_vct, i_table_id, i_extension, i_protocol,
b_cable_vct, i_version, b_current_next); b_cable_vct, i_version, b_current_next);
return p_vct; return p_vct;
} }
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_InitVCT * dvbpsi_atsc_vct_init
***************************************************************************** *****************************************************************************
* Initialize a pre-allocated dvbpsi_atsc_vct_t structure. * Initialize a pre-allocated dvbpsi_atsc_vct_t structure.
*****************************************************************************/ *****************************************************************************/
void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id, void dvbpsi_atsc_vct_init(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id,
uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct, uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct,
uint8_t i_version, bool b_current_next) uint8_t i_version, bool b_current_next)
{ {
...@@ -205,11 +205,11 @@ void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id, ...@@ -205,11 +205,11 @@ void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id,
} }
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_EmptyVCT * dvbpsi_atsc_vct_empty
***************************************************************************** *****************************************************************************
* Clean a dvbpsi_atsc_vct_t structure. * Clean a dvbpsi_atsc_vct_t structure.
*****************************************************************************/ *****************************************************************************/
void dvbpsi_atsc_EmptyVCT(dvbpsi_atsc_vct_t* p_vct) void dvbpsi_atsc_vct_empty(dvbpsi_atsc_vct_t* p_vct)
{ {
dvbpsi_atsc_vct_channel_t* p_channel = p_vct->p_first_channel; dvbpsi_atsc_vct_channel_t* p_channel = p_vct->p_first_channel;
dvbpsi_DeleteDescriptors(p_vct->p_first_descriptor); dvbpsi_DeleteDescriptors(p_vct->p_first_descriptor);
...@@ -226,14 +226,14 @@ void dvbpsi_atsc_EmptyVCT(dvbpsi_atsc_vct_t* p_vct) ...@@ -226,14 +226,14 @@ void dvbpsi_atsc_EmptyVCT(dvbpsi_atsc_vct_t* p_vct)
} }
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_DeleteVCT * dvbpsi_atsc_vct_delete
***************************************************************************** *****************************************************************************
* Empty and Delere a dvbpsi_atsc_vct_t structure. * Empty and Delere a dvbpsi_atsc_vct_t structure.
*****************************************************************************/ *****************************************************************************/
void dvbpsi_atsc_DeleteVCT(dvbpsi_atsc_vct_t *p_vct) void dvbpsi_atsc_vct_delete(dvbpsi_atsc_vct_t *p_vct)
{ {
if (p_vct) if (p_vct)
dvbpsi_atsc_EmptyVCT(p_vct); dvbpsi_atsc_vct_empty(p_vct);
free(p_vct); free(p_vct);
} }
...@@ -365,7 +365,7 @@ static void dvbpsi_ReInitVCT(dvbpsi_atsc_vct_decoder_t *p_decoder, const bool b_ ...@@ -365,7 +365,7 @@ static void dvbpsi_ReInitVCT(dvbpsi_atsc_vct_decoder_t *p_decoder, const bool b_
{ {
/* Free structures */ /* Free structures */
if (p_decoder->p_building_vct) if (p_decoder->p_building_vct)
dvbpsi_atsc_DeleteVCT(p_decoder->p_building_vct); dvbpsi_atsc_vct_delete(p_decoder->p_building_vct);
} }
p_decoder->p_building_vct = NULL; p_decoder->p_building_vct = NULL;
} }
...@@ -416,7 +416,7 @@ static bool dvbpsi_AddSectionVCT(dvbpsi_t *p_dvbpsi, dvbpsi_atsc_vct_decoder_t * ...@@ -416,7 +416,7 @@ static bool dvbpsi_AddSectionVCT(dvbpsi_t *p_dvbpsi, dvbpsi_atsc_vct_decoder_t *
/* Initialize the structures if it's the first section received */ /* Initialize the structures if it's the first section received */
if (!p_vct_decoder->p_building_vct) if (!p_vct_decoder->p_building_vct)
{ {
p_vct_decoder->p_building_vct = dvbpsi_atsc_NewVCT( p_vct_decoder->p_building_vct = dvbpsi_atsc_vct_new(
p_section->i_table_id, p_section->i_extension, p_section->i_table_id, p_section->i_extension,
p_section->p_payload_start[0], p_section->i_table_id == 0xC9, p_section->p_payload_start[0], p_section->i_table_id == 0xC9,
p_section->i_version, p_section->b_current_next); p_section->i_version, p_section->b_current_next);
......
...@@ -112,10 +112,10 @@ typedef struct dvbpsi_atsc_vct_s ...@@ -112,10 +112,10 @@ typedef struct dvbpsi_atsc_vct_s
typedef void (* dvbpsi_atsc_vct_callback)(void* p_cb_data, dvbpsi_atsc_vct_t* p_new_vct); typedef void (* dvbpsi_atsc_vct_callback)(void* p_cb_data, dvbpsi_atsc_vct_t* p_new_vct);
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_AttachVCT * dvbpsi_atsc_vct_attach
*****************************************************************************/ *****************************************************************************/
/*! /*!
* \fn bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, * \fn bool dvbpsi_atsc_vct_attach(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
uint16_t i_extension, dvbpsi_atsc_vct_callback pf_vct_callback, uint16_t i_extension, dvbpsi_atsc_vct_callback pf_vct_callback,
void* p_cb_data) void* p_cb_data)
* \brief Creation and initialization of a VCT decoder. * \brief Creation and initialization of a VCT decoder.
...@@ -126,15 +126,33 @@ typedef void (* dvbpsi_atsc_vct_callback)(void* p_cb_data, dvbpsi_atsc_vct_t* p_ ...@@ -126,15 +126,33 @@ typedef void (* dvbpsi_atsc_vct_callback)(void* p_cb_data, dvbpsi_atsc_vct_t* p_
* \param p_cb_data private data given in argument to the callback. * \param p_cb_data private data given in argument to the callback.
* \return true if everything went ok, else false. * \return true if everything went ok, else false.
*/ */
bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, bool dvbpsi_atsc_vct_attach(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
uint16_t i_extension, dvbpsi_atsc_vct_callback pf_vct_callback, uint16_t i_extension, dvbpsi_atsc_vct_callback pf_vct_callback,
void* p_cb_data); void* p_cb_data);
/*!
* \brief dvbpsi_atsc_AttachVCT is deprecated use @see dvbpsi_atsc_vct_attach() instead.
* \param p_dvbpsi dvbpsi handle to Subtable demultiplexor to which the decoder is attached.
* \param i_table_id Table ID, 0xC8 or 0xC9.
* \param i_extension Table ID extension, here TS ID.
* \param pf_vct_callback function to call back on new VCT.
* \param p_cb_data private data given in argument to the callback.
* \return true if everything went ok, else false.
*/
__attribute__((deprecated,unused))
inline bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
uint16_t i_extension, dvbpsi_atsc_vct_callback pf_vct_callback,
void* p_cb_data)
{
return dvbpsi_atsc_vct_attach(p_dvbpsi, i_table_id, i_extension,
pf_vct_callback, p_cb_data);
}
/***************************************************************************** /*****************************************************************************
* dvbpsi_DetachVCT * dvbpsi_atsc_vct_detach
*****************************************************************************/ *****************************************************************************/
/*! /*!
* \fn void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, * \fn void dvbpsi_atsc_vct_detach(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
* uint16_t i_extension) * uint16_t i_extension)
* *
* \brief Destroy a VCT decoder. * \brief Destroy a VCT decoder.
...@@ -143,13 +161,26 @@ bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, ...@@ -143,13 +161,26 @@ bool dvbpsi_atsc_AttachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id,
* \param i_extension Table ID extension, here TS ID. * \param i_extension Table ID extension, here TS ID.
* \return nothing. * \return nothing.
*/ */
void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension); void dvbpsi_atsc_vct_detach(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension);
/*!
* \brief dvbpsi_atsc_DetachVCT is deprecated use @see dvbpsi_atsc_vct_detach() instead.
* \param p_dvbpsi dvbpsi handle to Subtable demultiplexor to which the decoder is attached.
* \param i_table_id Table ID, 0xC8 or 0xC9.
* \param i_extension Table ID extension, here TS ID.
* \return nothing.
*/
__attribute__((deprecated,unused))
inline void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_extension)
{
dvbpsi_atsc_vct_detach(p_dvbpsi, i_table_id, i_extension);
}
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_InitVCT * dvbpsi_atsc_vct_init
*****************************************************************************/ *****************************************************************************/
/*! /*!
* \fn void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id, * \fn void dvbpsi_atsc_vct_init(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id,
uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct, uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct,
uint8_t i_version, bool b_current_next) uint8_t i_version, bool b_current_next)
* \brief Initialize a user-allocated dvbpsi_atsc_vct_t structure. * \brief Initialize a user-allocated dvbpsi_atsc_vct_t structure.
...@@ -162,15 +193,34 @@ void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_ex ...@@ -162,15 +193,34 @@ void dvbpsi_atsc_DetachVCT(dvbpsi_t *p_dvbpsi, uint8_t i_table_id, uint16_t i_ex
* \param b_current_next current next indicator * \param b_current_next current next indicator
* \return nothing. * \return nothing.
*/ */
void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id, void dvbpsi_atsc_vct_init(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id,
uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct, uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct,
uint8_t i_version, bool b_current_next); uint8_t i_version, bool b_current_next);
/*!
* \brief dvbpsi_atsc_InitVCT is deprecated use @see dvbpsi_atsc_vct_init() instead.
* \param i_table_id Table ID, 0xC8 or 0xC9.
* \param i_extension Table ID extension, here TS ID.
* \param i_protocol PSIP Protocol version.
* \param b_cable_vct Whether this is CVCT or a TVCT.
* \param i_version VCT version
* \param b_current_next current next indicator
* \return nothing.
*/
__attribute__((deprecated,unused))
inline void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id,
uint16_t i_extension, uint8_t i_protocol, bool b_cable_vct,
uint8_t i_version, bool b_current_next)
{
dvbpsi_atsc_vct_init(p_vct, i_table_id, i_extension, i_protocol, b_cable_vct,
i_version, b_current_next);
}
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_NewVCT * dvbpsi_atsc_vct_new
*****************************************************************************/ *****************************************************************************/
/*! /*!
* \fn dvbpsi_atsc_vct_t *dvbpsi_atsc_NewVCT(uint8_t i_table_id, uint16_t i_extension, * \fn dvbpsi_atsc_vct_t *dvbpsi_atsc_vct_new(uint8_t i_table_id, uint16_t i_extension,
* uint8_t i_protocol, bool b_cable_vct, uint8_t i_version, bool b_current_next); * uint8_t i_protocol, bool b_cable_vct, uint8_t i_version, bool b_current_next);
* *
* \brief Allocate and initialize a new dvbpsi_vct_t structure. * \brief Allocate and initialize a new dvbpsi_vct_t structure.
...@@ -182,32 +232,73 @@ void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id, ...@@ -182,32 +232,73 @@ void dvbpsi_atsc_InitVCT(dvbpsi_atsc_vct_t* p_vct, uint8_t i_table_id,
* \param b_current_next current next indicator * \param b_current_next current next indicator
* \return p_vct pointer to the VCT structure * \return p_vct pointer to the VCT structure
*/ */
dvbpsi_atsc_vct_t *dvbpsi_atsc_NewVCT(uint8_t i_table_id, uint16_t i_extension, dvbpsi_atsc_vct_t *dvbpsi_atsc_vct_new(uint8_t i_table_id, uint16_t i_extension,
uint8_t i_protocol, bool b_cable_vct, uint8_t i_version, uint8_t i_protocol, bool b_cable_vct, uint8_t i_version,
bool b_current_next); bool b_current_next);
/*!
* \brief dvbpsi_atsc_NewVCT is deprecated use @see dvbpsi_atsc_vct_new() instead.
* \param i_table_id Table ID, 0xC8 or 0xC9.
* \param i_extension Table ID extension, here TS ID.
* \param i_protocol PSIP Protocol version.
* \param b_cable_vct Whether this is CVCT or a TVCT.
* \param i_version VCT version
* \param b_current_next current next indicator
* \return p_vct pointer to the VCT structure
*/
__attribute__((deprecated,unused))
inline dvbpsi_atsc_vct_t *dvbpsi_atsc_NewVCT(uint8_t i_table_id, uint16_t i_extension,
uint8_t i_protocol, bool b_cable_vct, uint8_t i_version, bool b_current_next)
{
return dvbpsi_atsc_vct_new(i_table_id, i_extension, i_protocol,
b_cable_vct, i_version, b_current_next);
}
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_EmptyVCT * dvbpsi_atsc_vct_empty
*****************************************************************************/ *****************************************************************************/
/*! /*!
* \fn void dvbpsi_atsc_EmptyVCT(dvbpsi_atsc_vct_t* p_vct) * \fn void dvbpsi_atsc_vct_empty(dvbpsi_atsc_vct_t* p_vct)
* \brief Clean a dvbpsi_vct_t structure.
* \param p_vct pointer to the VCT structure
* \return nothing.
*/
void dvbpsi_atsc_vct_empty(dvbpsi_atsc_vct_t *p_vct);
/*!
* \brief dvbpsi_atsc_EmptyVCT is deprecated use @see dvbpsi_atsc_vct_empty() instead.
* \brief Clean a dvbpsi_vct_t structure. * \brief Clean a dvbpsi_vct_t structure.
* \param p_vct pointer to the VCT structure * \param p_vct pointer to the VCT structure
* \return nothing. * \return nothing.
*/ */
void dvbpsi_atsc_EmptyVCT(dvbpsi_atsc_vct_t *p_vct); __attribute__((deprecated,unused))
inline void dvbpsi_atsc_EmptyVCT(dvbpsi_atsc_vct_t *p_vct)
{
dvbpsi_atsc_vct_empty(p_vct);
}
/***************************************************************************** /*****************************************************************************
* dvbpsi_atsc_DeleteVCT * dvbpsi_atsc_vct_delete
*****************************************************************************/ *****************************************************************************/
/*! /*!
* \fn void dvbpsi_atsc_DeleteVCT(dvbpsi_atsc_vct_t *p_vct) * \fn void dvbpsi_atsc_vct_delete(dvbpsi_atsc_vct_t *p_vct)
* \brief Clean and free a dvbpsi_vct_t structure. * \brief Clean and free a dvbpsi_vct_t structure.
* \param p_vct pointer to the VCT structure * \param p_vct pointer to the VCT structure
* \return nothing. * \return nothing.
*/ */
void dvbpsi_atsc_DeleteVCT(dvbpsi_atsc_vct_t *p_vct); void dvbpsi_atsc_vct_delete(dvbpsi_atsc_vct_t *p_vct);
/*!
* \brief dvbpsi_atsc_DeleteVCT is deprecated use @see dvbpsi_atsc_vct_delete() instead.
* \brief Clean a dvbpsi_vct_t structure.
* \param p_vct pointer to the VCT structure
* \return nothing.
*/
__attribute__((deprecated,unused))
inline void dvbpsi_atsc_DeleteVCT(dvbpsi_atsc_vct_t *p_vct)
{
dvbpsi_atsc_vct_delete(p_vct);
}
#ifdef __cplusplus #ifdef __cplusplus
}; };
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment