⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mgt.h

📁 Dvbstreamer 用在解析MPTS的部分内容
💻 H
字号:
/*Copyright (C) 2006  Adam CharrettThis program is free software; you can redistribute it and/ormodify it under the terms of the GNU General Public Licenseas published by the Free Software Foundation; either version 2of the License, or (at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USAmgt.hDecode PSIP Master Guide Table.*/#ifndef _ATSC_MGT_H#define _ATSC_MGT_H /***************************************************************************** * dvbpsi_atsc_mgt_table_t *****************************************************************************//*! * \struct dvbpsi_atsc_mgt_table_s * \brief MGT Table structure. * * This structure is used to store a decoded MGT table information. *//*! * \typedef struct dvbpsi_atsc_mgt_table_s dvbpsi_mgt_table_t * \brief dvbpsi_atsc_mgt_table_t type definition. */typedef struct dvbpsi_atsc_mgt_table_s{    uint16_t                i_type;         /*!< Type of the table being described. */    uint16_t                i_pid;          /*!< PID the table is being sent on. */    uint8_t                 i_version;      /*!< Current version number of this table */    uint32_t                i_number_bytes; /*!< Number of bytes used by this table. */    dvbpsi_descriptor_t    *p_first_descriptor;   /*!< First descriptor for this table. */    struct dvbpsi_atsc_mgt_table_s *p_next;      /*!< next element of the list */} dvbpsi_atsc_mgt_table_t;/***************************************************************************** * dvbpsi_atsc_mgt_t *****************************************************************************//*! * \struct dvbpsi_atsc_mgt_s * \brief MGT structure. * * This structure is used to store a decoded MGT. *//*! * \typedef struct dvbpsi_mgt_s dvbpsi_mgt_t * \brief dvbpsi_mgt_t type definition. */typedef struct dvbpsi_atsc_mgt_s{    uint8_t                 i_version;          /*!< version_number */    int                     b_current_next;     /*!< current_next_indicator */        uint8_t                 i_protocol;         /*!< PSIP Protocol version */    dvbpsi_atsc_mgt_table_t     *p_first_table;      /*!< First table information structure. */            dvbpsi_descriptor_t    *p_first_descriptor;       /*!< First descriptor. */} dvbpsi_atsc_mgt_t;/***************************************************************************** * dvbpsi_mgt_callback *****************************************************************************//*! * \typedef void (* dvbpsi_mgt_callback)(void* p_cb_data,                                         dvbpsi_mgt_t* p_new_mgt) * \brief Callback type definition. */typedef void (* dvbpsi_atsc_mgt_callback)(void* p_cb_data, dvbpsi_atsc_mgt_t* p_new_mgt);/***************************************************************************** * dvbpsi_atsc_AttachMGT *****************************************************************************//*! * \fn void dvbpsi_AttachMGT(dvbpsi_demux_t * p_demux, uint8_t i_table_id,            dvbpsi_mgt_callback pf_callback, void* p_cb_data) *             * \brief Creation and initialization of a MGT decoder. * \param p_demux Subtable demultiplexor to which the decoder is attached. * \param i_table_id Table ID, 0xC7. * \param pf_callback function to call back on new MGT. * \param p_cb_data private data given in argument to the callback. * \return 0 if everything went ok. */int dvbpsi_atsc_AttachMGT(dvbpsi_decoder_t * p_psi_decoder, uint8_t i_table_id,          dvbpsi_atsc_mgt_callback pf_callback, void* p_cb_data);/***************************************************************************** * dvbpsi_DetachMGT *****************************************************************************//*! * \fn void dvbpsi_DetachMGT(dvbpsi_demux_t * p_demux, uint8_t i_table_id) * * \brief Destroy a MGT decoder. * \param p_demux Subtable demultiplexor to which the decoder is attached. * \param i_table_id Table ID, 0xC7. * \param i_extension Table extension, ignored as this should always be 0.  *                    (Required to match prototype for demux) * \return nothing. */void dvbpsi_atsc_DetachMGT(dvbpsi_demux_t * p_demux, uint8_t i_table_id, uint16_t i_extension);/***************************************************************************** * dvbpsi_atsc_InitMGT/dvbpsi_atsc_NewMGT *****************************************************************************//*! * \fn void dvbpsi_atsc_InitMGT(dvbpsi_mgt_t* p_mgt, uint8_t i_version,         int b_current_next, uint8_t i_protocol) * \brief Initialize a user-allocated dvbpsi_mgt_t structure. * \param p_mgt pointer to the MGT structure * \param i_version MGT version * \param b_current_next current next indicator * \param i_protocol PSIP Protocol version. * \return nothing. */void dvbpsi_atsc_InitMGT(dvbpsi_atsc_mgt_t *p_mgt, uint8_t i_version,     int b_current_next, uint8_t i_protocol);/*! * \def dvbpsi_atsc_NewMGT(p_mgt, i_network_id, i_version, b_current_next) * \brief Allocate and initialize a new dvbpsi_mgt_t structure. Use ObjectRefDec to delete it. * \param p_mgt pointer to the MGT structure * \param i_network_id network id * \param i_version MGT version * \param b_current_next current next indicator * \return nothing. */#define dvbpsi_atsc_NewMGT(p_mgt, i_version, b_current_next, i_protocol) \do {                                                                     \  ObjectRegisterTypeDestructor(dvbpsi_atsc_mgt_t, (ObjectDestructor_t)dvbpsi_atsc_EmptyMGT); \  p_mgt = (dvbpsi_atsc_mgt_t*)ObjectCreateType(dvbpsi_atsc_mgt_t);       \  if(p_mgt != NULL)                                                      \    dvbpsi_atsc_InitMGT(p_mgt, i_version, b_current_next, i_protocol);   \} while(0);/***************************************************************************** * dvbpsi_EmptyMGT *****************************************************************************//*! * \fn void dvbpsi_EmptyMGT(dvbpsi_mgt_t* p_mgt) * \brief Clean a dvbpsi_mgt_t structure. * \param p_mgt pointer to the MGT structure * \return nothing. */void dvbpsi_atsc_EmptyMGT(dvbpsi_atsc_mgt_t *p_mgt);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -