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



The MediaType object is a wrapper object for the DirectShow AM_MEDIA_TYPE structure.

Object Model

MediaType Class

Syntax

Visual Basic (Declaration) 
Public Class MediaType 
   Implements IDisposable 
Visual Basic (Usage)Copy Code
Dim instance As MediaType
C# 
public class MediaType : IDisposable  
C++/CLI 
public ref class MediaType : public IDisposable  

Remarks

The MediaType object is used to describe the MediaSample formats returned from and written to the SampleSource, SampleTarget, and MediaSample objects. A MediaSample has a specific MediaType associated with it. Each "media type" consists of three attributes, the Type, Subtype and FormatType. The "Type" of the sample may be Constants.MEDIATYPE_Video, or Constants.MEDIATYPE_Stream, or some other type. To determine or assign the major media type of a media sample, use the MediaType.Type property. A format type may also have a subtype. For "Type" Constants.MEDIATYPE_Video, the "Subtype" may be Constants.MEDIASUBTYPE_RGB24. To determine or assign the subtype, use the MediaType.SubType The "FormatType" specifies additional information for a specific Type-Subtype combination. The MediaType.FormatType property provides information on the kind of data found in the Format buffer. The Format buffer can be accessed directly, by the MediaType.Format property, or a copy of the buffer can be obtained by calling the MediaType.GetFormatData method. When setting the Format, the format data itself must actually be copied to the format buffer. This is done using the MediaType.SetFormatData method OR the MediaType.SetVideoFormatData method. To determine or change the size of the format buffer, use the MediaType.FormatSize property. For more information on available "Types", "Subtypes" and "FormatTypes", refer to the DirectShow documentation on AM_MEDIA_TYPE.

Inheritance Hierarchy

System.Object
   Leadtools.Multimedia.MediaType

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