📄 mpeg_descriptor.h
字号:
/*$Id: mpeg_descriptor.h,v 1.11 2004/08/12 22:57:18 rasc Exp $ DVBSNOOP a dvb sniffer and mpeg2 stream analyzer tool http://dvbsnoop.sourceforge.net/ (c) 2001-2004 Rainer.Scherg@gmx.de (rasc) -- MPEG Descriptors ISO/IEC 13818-2$Log: mpeg_descriptor.h,v $Revision 1.11 2004/08/12 22:57:18 rasc - New: MPEG Content Labeling descriptor (H.222.0 AMD1) - New: PES update ITU-T H.222.0 AMD2H.222.0 AMD3 updates startedRevision 1.10 2004/08/01 21:33:08 rascminor TVA stuff (TS 102 323)Revision 1.9 2004/07/25 20:12:58 rasc - New: content_identifier_descriptor (TS 102 323) - New: TVA_id_descriptor (TS 102 323) - New: related_content_descriptor (TS 102 323) - New: default_authority_descriptor (TS 102 323)Revision 1.8 2004/01/15 21:27:22 rascDSM-CC stream descriptorsRevision 1.7 2004/01/01 20:31:22 rascPES program stream map, minor descriptor cleanupRevision 1.6 2004/01/01 20:09:20 rascDSM-CC INT/UNT descriptorsPES-sync changed, TS sync changed,descriptor scopeother changesRevision 1.5 2003/11/26 19:55:32 rascno messageRevision 1.4 2003/11/26 16:27:45 rasc- mpeg4 descriptors- simplified bit decoding and output functionRevision 1.3 2003/10/27 22:43:49 rasccarousel info descriptor and moreRevision 1.2 2003/10/17 18:16:54 rasc- started more work on newer ISO 13818 descriptors- some reorg work startedRevision 1.1 2003/07/08 19:59:50 rascrestructuring... some new, some fixes,trying to include DSM-CC, Well someone a ISO13818-6 and latest version of ISO 18313-1 to spare?*/#ifndef _MPEG_DESCRIPTOR_H#define _MPEG_DESCRIPTOR_H 1int descriptorMPEG (u_char *b);void descriptorMPEG_VideoStream (u_char *b);void descriptorMPEG_AudioStream (u_char *b);void descriptorMPEG_Hierarchy (u_char *b);void descriptorMPEG_Registration (u_char *b);void descriptorMPEG_DataStreamAlignment (u_char *b);void descriptorMPEG_TargetBackgroundGrid (u_char *b);void descriptorMPEG_VideoWindow (u_char *b);void descriptorMPEG_CA (u_char *b);void descriptorMPEG_ISO639_Lang (u_char *b);void descriptorMPEG_SystemClock (u_char *b);void descriptorMPEG_MultiplexBufUtil (u_char *b);void descriptorMPEG_Copyright (u_char *b);void descriptorMPEG_MaxBitrate (u_char *b);void descriptorMPEG_PrivateDataIndicator (u_char *b);void descriptorMPEG_SmoothingBuf (u_char *b);void descriptorMPEG_STD (u_char *b);void descriptorMPEG_IBP (u_char *b); /* 13818-6 , TR 102 006 */void descriptorMPEG_Carousel_Identifier (u_char *b);void descriptorMPEG_Association_tag (u_char *b);void descriptorMPEG_Deferred_Association_tags (u_char *b); /* 13818-6 Stream descriptors */void descriptorMPEG_NPT_reference (u_char *b);void descriptorMPEG_NPT_endpoint (u_char *b);void descriptorMPEG_stream_mode (u_char *b);void descriptorMPEG_stream_event (u_char *b); /* MPEG4 */void descriptorMPEG_MPEG4_video (u_char *b);void descriptorMPEG_MPEG4_audio (u_char *b);void descriptorMPEG_IOD (u_char *b);void descriptorMPEG_SL (u_char *b);void descriptorMPEG_FMC (u_char *b);void descriptorMPEG_External_ES_ID (u_char *b);void descriptorMPEG_MuxCode (u_char *b);void descriptorMPEG_FMXBufferSize (u_char *b);void descriptorMPEG_MultiplexBuffer (u_char *b);// void descriptorMPEG_FlexMuxTiming (u_char *b);void descriptorMPEG_ContentLabeling (u_char *b); /* TV ANYTIME, TS 102 323 */void descriptorMPEG_TVA_metadata_pointer (u_char *b);void descriptorMPEG_TVA_metadata (u_char *b);void descriptorMPEG_TVA_metadata_STD (u_char *b); /* H.222.0 AMD3 */void descriptorMPEG_AVC_video (u_char *b);void descriptorMPEG_IPMP (u_char *b);void descriptorMPEG_AVC_timing_and_HRD (u_char *b);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -