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

📄 premiere_de.c

📁 dvbsnoop is a DVB/MPEG stream analyzer program. The program can be used to sniff, monitor, debug, d
💻 C
字号:
/*$Id: premiere_de.c,v 1.3 2005/08/10 21:28:19 rasc Exp $ DVBSNOOP a dvb sniffer  and mpeg2 stream analyzer tool http://dvbsnoop.sourceforge.net/ (c) 2001-2005   Rainer.Scherg@gmx.de  (rasc)  -- User defined table // Private  -- Premiere Content Information Table CIT$Log: premiere_de.c,v $Revision 1.3  2005/08/10 21:28:19  rascNew: Program Stream handling  (-s ps)Revision 1.2  2005/06/29 17:30:38  rascsome legal notes...Revision 1.1  2004/11/03 21:01:02  rasc - New: "premiere.de" private tables and descriptors (tnx to Peter.Pavlov, Premiere) - New: cmd option "-privateprovider <provider name>" - New: Private provider sections and descriptors decoding - Changed: complete restructuring of private descriptors and sections*/#include "dvbsnoop.h"#include "premiere_de.h"#include "section_premiere_cit.h"#include "section_premiere_cpt.h"#include "dvb_descriptor_premiere.h"/*  Please check for legal issues, when using provider specific data structures in your own software! Using  these data structures may require a certification or licensing process by the provider. */static PRIV_DESCR_ID_FUNC pdescriptors[] = {	{ 0xF0, DVB_SI,   descriptor_PRIVATE_PremiereDE_ContentOrder },	{ 0xF1, DVB_SI,   descriptor_PRIVATE_PremiereDE_ParentalInformation },	{ 0xF2, DVB_SI,   descriptor_PRIVATE_PremiereDE_ContentTransmition },	{ 0x00,	0,        NULL } // end of table  (id = 0x00, funct = NULL)};static PRIV_SECTION_ID_FUNC psections[] = {	{ 0xA0,	section_PRIVATE_PremiereDE_CIT },	{ 0xA1,	section_PRIVATE_PremiereDE_CPT },	{ 0x00, NULL }	// end of table  (id = 0x00, funct = NULL)	};//// -- Return private section/descriptor id tables// -- for this scope//void getPrivate_PremiereDE ( PRIV_SECTION_ID_FUNC **psect,		PRIV_DESCR_ID_FUNC **pdesc){   *psect = psections;   *pdesc = pdescriptors;}

⌨️ 快捷键说明

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