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

📄 decode_pmt.c

📁 libdvbpsi4-0.1.5版本
💻 C
字号:
/***************************************************************************** * decode_pmt.c: PAT decoder example *---------------------------------------------------------------------------- * (c)2001-2002 VideoLAN * $Id: decode_pmt.c 104 2005-03-21 13:38:56Z massiot $ * * Authors: Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of 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 of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. * *---------------------------------------------------------------------------- * *****************************************************************************/#include "config.h"#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <fcntl.h>#include <math.h>#if defined(HAVE_INTTYPES_H)#include <inttypes.h>#elif defined(HAVE_STDINT_H)#include <stdint.h>#endif/* The libdvbpsi distribution defines DVBPSI_DIST */#ifdef DVBPSI_DIST#include "../src/dvbpsi.h"#include "../src/psi.h"#include "../src/descriptor.h"#include "../src/tables/pmt.h"#include "../src/descriptors/dr.h"#else#include <dvbpsi/dvbpsi.h>#include <dvbpsi/psi.h>#include <dvbpsi/descriptor.h>#include <dvbpsi/pmt.h>#include <dvbpsi/dr.h>#endif#define SYSTEM_CLOCK_DR 0x0B#define MAX_BITRATE_DR 0x0E#define STREAM_IDENTIFIER_DR 0x52#define SUBTITLING_DR 0x59/***************************************************************************** * ReadPacket *****************************************************************************/int ReadPacket(int i_fd, uint8_t* p_dst){  int i = 187;  int i_rc = 1;  p_dst[0] = 0;  while((p_dst[0] != 0x47) && (i_rc > 0))  {    i_rc = read(i_fd, p_dst, 1);  }  while((i != 0) && (i_rc > 0))  {    i_rc = read(i_fd, p_dst + 188 - i, i);    if(i_rc >= 0)      i -= i_rc;  }  return (i == 0) ? 1 : 0;}/***************************************************************************** * GetTypeName *****************************************************************************/char* GetTypeName(uint8_t type){  switch (type)    {    case 0x00:      return "Reserved";    case 0x01:      return "ISO/IEC 11172 Video";    case 0x02:      return "ISO/IEC 13818-2 Video";    case 0x03:      return "ISO/IEC 11172 Audio";    case 0x04:      return "ISO/IEC 13818-3 Audio";    case 0x05:      return "ISO/IEC 13818-1 Private Section";    case 0x06:      return "ISO/IEC 13818-1 Private PES data packets";    case 0x07:      return "ISO/IEC 13522 MHEG";    case 0x08:      return "ISO/IEC 13818-1 Annex A DSM CC";    case 0x09:      return "H222.1";    case 0x0A:      return "ISO/IEC 13818-6 type A";    case 0x0B:      return "ISO/IEC 13818-6 type B";    case 0x0C:      return "ISO/IEC 13818-6 type C";    case 0x0D:      return "ISO/IEC 13818-6 type D";    case 0x0E:      return "ISO/IEC 13818-1 auxillary";    default:      if (type < 0x80)	return "ISO/IEC 13818-1 reserved";      else	return "User Private";    }}/***************************************************************************** * DumpMaxBitrateDescriptor *****************************************************************************/void DumpMaxBitrateDescriptor(dvbpsi_max_bitrate_dr_t* bitrate_descriptor){  printf("Bitrate: %d\n", bitrate_descriptor->i_max_bitrate);}/***************************************************************************** * DumpSystemClockDescriptor *****************************************************************************/void DumpSystemClockDescriptor(dvbpsi_system_clock_dr_t* p_clock_descriptor){  printf("External clock: %s, Accuracy: %E\n",	 p_clock_descriptor->b_external_clock_ref ? "Yes" : "No",	 p_clock_descriptor->i_clock_accuracy_integer *	 pow(10, p_clock_descriptor->i_clock_accuracy_exponent));}/***************************************************************************** * DumpStreamIdentifierDescriptor *****************************************************************************/void DumpStreamIdentifierDescriptor(dvbpsi_stream_identifier_dr_t* p_si_descriptor){  printf("Component tag: %d\n",	 p_si_descriptor->i_component_tag);}/***************************************************************************** * DumpSubtitleDescriptor *****************************************************************************/void DumpSubtitleDescriptor(dvbpsi_subtitling_dr_t* p_subtitle_descriptor){  int a;  printf("%d subtitles,\n", p_subtitle_descriptor->i_subtitles_number);  for (a = 0; a < p_subtitle_descriptor->i_subtitles_number; ++a)    {      printf("       | %d - lang: %c%c%c, type: %d, cpid: %d, apid: %d\n", a,	     p_subtitle_descriptor->p_subtitle[a].i_iso6392_language_code[0],	     p_subtitle_descriptor->p_subtitle[a].i_iso6392_language_code[1],	     p_subtitle_descriptor->p_subtitle[a].i_iso6392_language_code[2],	     p_subtitle_descriptor->p_subtitle[a].i_subtitling_type,	     p_subtitle_descriptor->p_subtitle[a].i_composition_page_id,	     p_subtitle_descriptor->p_subtitle[a].i_ancillary_page_id);    }}/***************************************************************************** * DumpDescriptors *****************************************************************************/void DumpDescriptors(const char* str, dvbpsi_descriptor_t* p_descriptor){  int i;  while(p_descriptor)  {    printf("%s 0x%02x : ", str, p_descriptor->i_tag);    switch (p_descriptor->i_tag)      {      case SYSTEM_CLOCK_DR:	DumpSystemClockDescriptor(dvbpsi_DecodeSystemClockDr(p_descriptor));	break;      case MAX_BITRATE_DR:	DumpMaxBitrateDescriptor(dvbpsi_DecodeMaxBitrateDr(p_descriptor));	break;      case STREAM_IDENTIFIER_DR:	DumpStreamIdentifierDescriptor(dvbpsi_DecodeStreamIdentifierDr(p_descriptor));	break;      case SUBTITLING_DR:	DumpSubtitleDescriptor(dvbpsi_DecodeSubtitlingDr(p_descriptor));	break;      default:	printf("\"");	for(i = 0; i < p_descriptor->i_length; i++)	  printf("%c", p_descriptor->p_data[i]);	printf("\"\n");      }    p_descriptor = p_descriptor->p_next;  }};/***************************************************************************** * DumpPMT *****************************************************************************/void DumpPMT(void* p_zero, dvbpsi_pmt_t* p_pmt){  dvbpsi_pmt_es_t* p_es = p_pmt->p_first_es;  printf(  "\n");  printf(  "New active PMT\n");  printf(  "  program_number : %d\n",         p_pmt->i_program_number);  printf(  "  version_number : %d\n",         p_pmt->i_version);  printf(  "  PCR_PID        : 0x%x (%d)\n",         p_pmt->i_pcr_pid, p_pmt->i_pcr_pid);  DumpDescriptors("    ]", p_pmt->p_first_descriptor);  printf(  "    | type @ elementary_PID\n");  while(p_es)  {    printf("    | 0x%02x (%s) @ 0x%x (%d)\n",           p_es->i_type, GetTypeName(p_es->i_type),	   p_es->i_pid, p_es->i_pid);    DumpDescriptors("    |  ]", p_es->p_first_descriptor);    p_es = p_es->p_next;  }  dvbpsi_DeletePMT(p_pmt);}/***************************************************************************** * main *****************************************************************************/int main(int i_argc, char* pa_argv[]){  int i_fd;  uint8_t data[188];  dvbpsi_handle h_dvbpsi;  int b_ok;  uint16_t i_program_number, i_pmt_pid;  if(i_argc != 4)    return 1;  i_fd = open(pa_argv[1], 0);  i_program_number = atoi(pa_argv[2]);  i_pmt_pid = atoi(pa_argv[3]);  h_dvbpsi = dvbpsi_AttachPMT(i_program_number, DumpPMT, NULL);  b_ok = ReadPacket(i_fd, data);  while(b_ok)  {    uint16_t i_pid = ((uint16_t)(data[1] & 0x1f) << 8) + data[2];    if(i_pid == i_pmt_pid)      dvbpsi_PushPacket(h_dvbpsi, data);    b_ok = ReadPacket(i_fd, data);  }  dvbpsi_DetachPMT(h_dvbpsi);  return 0;}

⌨️ 快捷键说明

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