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

📄 tdttot.c

📁 Dvbstreamer 用在解析MPTS的部分内容
💻 C
字号:
/*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, USAtdttot.cDecode Time Date Table and Time Offset Table.*/#include <stdio.h>#include <stdlib.h>#include <stdint.h>#include <dvbpsi/dvbpsi.h>#include <dvbpsi/psi.h>#include <dvbpsi/descriptor.h>#include "dvbpsi/datetime.h"#include "dvbpsi/tdttot.h"#include "logging.h"#include "objects.h"/***************************************************************************** * dvbpsi_tdt_tot_decoder_s ***************************************************************************** * TDT/TOT decoder. *****************************************************************************/typedef struct dvbpsi_tdt_tot_decoder_s{  dvbpsi_tdt_tot_callback       pf_callback;  void *                        p_cb_data;} dvbpsi_tdt_tot_decoder_t;/***************************************************************************** * dvbpsi_GatherPATSections ***************************************************************************** * Callback for the PSI decoder. *****************************************************************************/void dvbpsi_GatherTDTTOTSections(dvbpsi_decoder_t* p_decoder,                              dvbpsi_psi_section_t* p_section);/***************************************************************************** * dvbpsi_DecodeTDTSection ***************************************************************************** * TDT decoder. *****************************************************************************/void dvbpsi_DecodeTDTSection(dvbpsi_tdt_tot_t* p_tdt,                             dvbpsi_psi_section_t* p_section);/***************************************************************************** * dvbpsi_DecodeTOTSection ***************************************************************************** * TOT decoder. *****************************************************************************/void dvbpsi_DecodeTOTSection(dvbpsi_tdt_tot_t* p_tot,                             dvbpsi_psi_section_t* p_section);/***************************************************************************** * dvbpsi_AttachTDTTOT ***************************************************************************** * Initialize a TDT/TOT decoder and return a handle on it. *****************************************************************************/dvbpsi_handle dvbpsi_AttachTDTTOT(dvbpsi_tdt_tot_callback pf_callback,                                  void* p_cb_data){  dvbpsi_handle h_dvbpsi = (dvbpsi_decoder_t*)malloc(sizeof(dvbpsi_decoder_t));  dvbpsi_tdt_tot_decoder_t* p_tdt_tot_decoder;  if(h_dvbpsi == NULL)    return NULL;  p_tdt_tot_decoder = (dvbpsi_tdt_tot_decoder_t*)malloc(sizeof(dvbpsi_tdt_tot_decoder_t));  if(p_tdt_tot_decoder == NULL)  {    free(h_dvbpsi);    return NULL;  }  /* PSI decoder configuration */  h_dvbpsi->pf_callback = &dvbpsi_GatherTDTTOTSections;  h_dvbpsi->p_private_decoder = p_tdt_tot_decoder;  h_dvbpsi->i_section_max_size = 1024;  /* PSI decoder initial state */  h_dvbpsi->i_continuity_counter = 31;  h_dvbpsi->b_discontinuity = 1;  h_dvbpsi->p_current_section = NULL;  h_dvbpsi->p_free_sections = NULL;  /* TDT/TOT decoder information */  p_tdt_tot_decoder->pf_callback = pf_callback;  p_tdt_tot_decoder->p_cb_data = p_cb_data;  return h_dvbpsi;}/***************************************************************************** * dvbpsi_DetachTDTTOT ***************************************************************************** * Close a TDT/TOT decoder. The handle isn't valid any more. *****************************************************************************/void dvbpsi_DetachTDTTOT(dvbpsi_handle h_dvbpsi){  free(h_dvbpsi->p_private_decoder);  if(h_dvbpsi->p_current_section)    dvbpsi_DeletePSISections(h_dvbpsi->p_current_section);  if(h_dvbpsi->p_free_sections)    dvbpsi_DeletePSISections(h_dvbpsi->p_free_sections);  free(h_dvbpsi);}/***************************************************************************** * dvbpsi_InitTDTTOT ***************************************************************************** * Initialize a pre-allocated dvbpsi_tdt_tot_t structure. *****************************************************************************/void dvbpsi_InitTDTTOT(dvbpsi_tdt_tot_t *p_tdt_tot,                        int i_year, int i_month, int i_day,                        int i_hour, int i_minute, int i_second){  p_tdt_tot->t_date_time.i_year = i_year;  p_tdt_tot->t_date_time.i_month = i_month;  p_tdt_tot->t_date_time.i_day = i_day;  p_tdt_tot->t_date_time.i_hour = i_hour;  p_tdt_tot->t_date_time.i_minute = i_minute;  p_tdt_tot->t_date_time.i_second = i_second;  p_tdt_tot->p_first_descriptor = NULL;}/***************************************************************************** * dvbpsi_EmptyTDTTOT ***************************************************************************** * Clean a dvbpsi_tdt_tot_t structure. *****************************************************************************/void dvbpsi_EmptyTDTTOT(dvbpsi_tdt_tot_t *p_tdt_tot){    dvbpsi_DeleteDescriptors(p_tdt_tot->p_first_descriptor);}/***************************************************************************** * dvbpsi_GatherPATSections ***************************************************************************** * Callback for the PSI decoder. *****************************************************************************/void dvbpsi_GatherTDTTOTSections(dvbpsi_decoder_t* p_decoder,                              dvbpsi_psi_section_t* p_section){  dvbpsi_tdt_tot_decoder_t* p_tdt_tot_decoder                        = (dvbpsi_tdt_tot_decoder_t*)p_decoder->p_private_decoder;  if(p_section->i_table_id == 0x70)  {    dvbpsi_tdt_tot_t* p_tdt;    dvbpsi_NewTDTTOT(p_tdt, 0,0,0,0,0,0);    dvbpsi_DecodeTDTSection(p_tdt, p_section);    p_tdt_tot_decoder->pf_callback(p_tdt_tot_decoder->p_cb_data, p_tdt);  }  if(p_section->i_table_id == 0x73)  {    dvbpsi_tdt_tot_t* p_tot;    dvbpsi_NewTDTTOT(p_tot, 0,0,0,0,0,0);    dvbpsi_DecodeTOTSection(p_tot, p_section);    p_tdt_tot_decoder->pf_callback(p_tdt_tot_decoder->p_cb_data, p_tot);  }  dvbpsi_ReleasePSISections(p_decoder, p_section);}/***************************************************************************** * dvbpsi_DecodeTDTSection ***************************************************************************** * TDT decoder. *****************************************************************************/void dvbpsi_DecodeTDTSection(dvbpsi_tdt_tot_t* p_tdt,                             dvbpsi_psi_section_t* p_section){    // Decode UTC Time    dvbpsi_DecodeMJDUTC(p_section->p_payload_start, &p_tdt->t_date_time);    p_tdt->p_first_descriptor = NULL;}/***************************************************************************** * dvbpsi_DecodeTOTSection ***************************************************************************** * TOT decoder. *****************************************************************************/void dvbpsi_DecodeTOTSection(dvbpsi_tdt_tot_t* p_tot,                             dvbpsi_psi_section_t* p_section){    uint16_t i_length;    uint8_t *p_byte, *p_end;    // Decode UTC Time    p_byte = p_section->p_payload_start;    dvbpsi_DecodeMJDUTC(p_byte, &p_tot->t_date_time);    p_byte += 5;    i_length = ((p_byte[0] & 0xf) << 8) | p_byte[1];    p_byte += 2;    p_end = p_byte + i_length;    if( p_end > p_section->p_payload_end ) return;    while(p_byte + 2 <= p_end)    {        uint8_t i_tag = p_byte[0];        uint8_t i_desc_length = p_byte[1];        if(i_desc_length + 2 <= p_end - p_byte)          dvbpsi_TOTAddDescriptor(p_tot, i_tag, i_desc_length, p_byte + 2);        p_byte += 2 + i_desc_length;    }}/***************************************************************************** * dvbpsi_TOTAddDescriptor ***************************************************************************** * Add a descriptor in the TOT description. *****************************************************************************/dvbpsi_descriptor_t *dvbpsi_TOTAddDescriptor(                                               dvbpsi_tdt_tot_t *p_tot,                                               uint8_t i_tag, uint8_t i_length,                                               uint8_t *p_data){  dvbpsi_descriptor_t * p_descriptor                        = dvbpsi_NewDescriptor(i_tag, i_length, p_data);  if(p_descriptor)  {    if(p_tot->p_first_descriptor == NULL)    {      p_tot->p_first_descriptor = p_descriptor;    }    else    {      dvbpsi_descriptor_t * p_last_descriptor = p_tot->p_first_descriptor;      while(p_last_descriptor->p_next != NULL)        p_last_descriptor = p_last_descriptor->p_next;      p_last_descriptor->p_next = p_descriptor;    }  }  return p_descriptor;}

⌨️ 快捷键说明

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