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

📄 mhp_misc.c

📁 DVB MPEG2 system stream 分析, 包含 各個talbe(EIT,PMT,PAT,SDT),以及video,audio. 對於學習數字電視有很大幫助.
💻 C
字号:
/*$Id: mhp_misc.c,v 1.3 2004/02/15 01:01:01 rasc Exp $ DVBSNOOP a dvb sniffer  and mpeg2 stream analyzer tool http://dvbsnoop.sourceforge.net/ (c) 2001-2004   Rainer.Scherg@gmx.de (rasc)$Log: mhp_misc.c,v $Revision 1.3  2004/02/15 01:01:01  rascDSM-CC  DDB (DownloadDataBlock Message)DSM-CC  U-N-Message  startedCarousel Descriptors completedRevision 1.2  2004/02/12 21:21:19  rascMHP AIT descriptorssome smaller changesRevision 1.1  2004/02/10 22:57:52  rascMHP descriptor, missing DVB descriptor done*/#include "dvbsnoop.h"#include "mhp_misc.h"#include "strings/dvb_str.h"#include "strings/dsmcc_str.h"#include "misc/output.h"/* *  used in AIT and in descriptors *  ETSI TS 102 812 */int  mhp_application_identifier (int  v, u_char *b){ 	outBit_Sx_NL  (v,"organisation_id: ",	b,  0, 32); 	outBit_S2x_NL (v,"appliction_id: ",	b, 32, 16,			(char *(*)(u_long)) dsmccStrMHP_application_id );	return 6;}/* *  used in AIT and in descriptors *  ETSI TS 102 812 */int  mhp_application_profile_version (int  v, u_char *b){ 	outBit_Sx_NL (v,"application_profile: ",	b,   0, 16); 	outBit_Sx_NL (v,"version.major: ",		b,  16,  8); 	outBit_Sx_NL (v,"version.minor: ",		b,  24,  8); 	outBit_Sx_NL (v,"version.micro: ",		b,  32,  8);	return 5;}

⌨️ 快捷键说明

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