Holds information of a video format used by Windows Media Foundation.
Definition
Namespace:Telerik.Windows.MediaFoundation
Assembly:Telerik.Windows.MediaFoundation.dll
Syntax:
public class MediaFoundationVideoFormatInfo
Inheritance: objectMediaFoundationVideoFormatInfo
Constructors
Initializes a new instance of the MediaFoundationVideoFormatInfo class.
public MediaFoundationVideoFormatInfo()
Initializes a new instance of the MediaFoundationVideoFormatInfo class.
public MediaFoundationVideoFormatInfo(Guid majorType, Guid subType, int frameSizeWidth, int frameSizeHeight, int frameRate, int frameRateDenominator, int frameRateMin, int frameRateMinDenominator, int frameRateMax, int frameRateMaxDenominator)
Properties
Gets the effective frame rate by dividing the FrameRate by the FrameRateDenominator.
public int EffectiveFrameRate { get; }
Gets the effective maximum frame rate by dividing the FrameRateMax by the FrameRateDenominatorMax.
public int EffectiveMaxFrameRate { get; }
Gets the effective minimum frame rate by dividing the FrameRateMin by the FrameRateDenominatorMin.
public int EffectiveMinFrameRate { get; }
Gets the frame rate denominator of this video format.
public int FrameRateDenominator { get; set; }
Gets the maximum frame rate of this video format.
public int FrameRateMax { get; set; }
Gets the maximum frame rate denominator of this video format.
public int FrameRateMaxDenominator { get; set; }
Gets the minimum frame rate of this video format.
public int FrameRateMin { get; set; }
Gets the minimum frame rate denominator of this video format.
public int FrameRateMinDenominator { get; set; }
Gets the height of the frames of this video format.
public int FrameSizeHeight { get; set; }
Gets the width of the frames of this video format.
public int FrameSizeWidth { get; set; }
Gets or sets the major type of this video format.
public Guid MajorType { get; set; }
Gets the display name of the media sub type of this video format.
public string SubTypeDisplayName { get; }