premiere_de.c
来自「LINUX下的DVD码流分析软件,可以对DVD码流进行分析,播放,测试等.」· C语言 代码 · 共 77 行
C
77 行
/*$Id: premiere_de.c,v 1.1 2004/11/03 21:01:02 rasc Exp $ DVBSNOOP a dvb sniffer and mpeg2 stream analyzer tool http://dvbsnoop.sourceforge.net/ (c) 2001-2004 Rainer.Scherg@gmx.de (rasc) -- User defined table // Private -- Premiere Content Information Table CIT$Log: premiere_de.c,v $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"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 + =
减小字号Ctrl + -
显示快捷键?