LEADTOOLS Multimedia (Leadtools.Multimedia assembly) Send comments on this topic. | Back to Introduction | Help Version 17.0.3.22
Filter_MPEG2_Program_Demux Field
See Also 
Leadtools.Multimedia Namespace > Constants Class : Filter_MPEG2_Program_Demux Field



LEAD MPEG2 Program Demultiplexer string constant

Syntax

Visual Basic (Declaration) 
<MarshalAsAttribute(UnmanagedType.U1 Or  _
    UnmanagedType.LPStr)>
Public Const Filter_MPEG2_Program_Demux As String
Visual Basic (Usage)Copy Code
Dim value As String
 
value = Constants.Filter_MPEG2_Program_Demux
C# 
[MarshalAsAttribute(UnmanagedType.U1 | 
    UnmanagedType.LPStr)]
public const string Filter_MPEG2_Program_Demux
C++/CLI 
[MarshalAsAttribute(UnmanagedType.U1 | 
    UnmanagedType.LPStr)]
public:
const String^ Filter_MPEG2_Program_Demux

Remarks

The LEAD MPEG2 Program Demultiplexer is a DirectShow filter that can parse the following types of streams:
  1. MPEG-2 Program specified in ISO/IEC 13818-1
  2. MPEG-1 System specified in ISO/IEC 11172-1
  3. Elementary stream data (also known as raw video or raw audio data)

The first two formats are multiplexed formats, and they can contain video, audio and private data streams. The video compression can be MPEG1 (ISO/IEC 11172-2), MPEG2 (ISO/IEC 13818-2), MPEG4 (ISO/IEC 14496-2) or H.264 (ISO/IEC 14496-10). The audio compression can be MPEG1 (ISO/IEC 11172-3), AC3, LPCM or AAC.

This filter does NOT support MPEG-2 Transport streams defined in ISO/IEC 13818-1. This type of file/stream is supported in the LEAD MPEG2 Transport Demultiplexer. This filter does NOT support private data. For private data support, please use the LEAD MPEG2 Transport Demultiplexer.

The demultiplexer works in pull mode, so it will connect to source filters that expose the IAsyncReader interface. IAsyncReader is a standard Microsoft interface. Please consult the Microsoft documentation for more information on IAsyncReader.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also