New to Telerik UI for WPFStart a free 30-day trial

Holds information of a video format used by Windows Media Foundation.

Definition

Namespace:Telerik.Windows.MediaFoundation

Assembly:Telerik.Windows.MediaFoundation.dll

Syntax:

C#
public class MediaFoundationVideoFormatInfo

Inheritance: objectMediaFoundationVideoFormatInfo

Constructors

Initializes a new instance of the MediaFoundationVideoFormatInfo class.

C#
public MediaFoundationVideoFormatInfo()

Initializes a new instance of the MediaFoundationVideoFormatInfo class.

C#
public MediaFoundationVideoFormatInfo(Guid majorType, Guid subType, int frameSizeWidth, int frameSizeHeight, int frameRate, int frameRateDenominator, int frameRateMin, int frameRateMinDenominator, int frameRateMax, int frameRateMaxDenominator)
Parameters:majorTypeGuidsubTypeGuidframeSizeWidthintframeSizeHeightintframeRateintframeRateDenominatorintframeRateMinintframeRateMinDenominatorintframeRateMaxintframeRateMaxDenominatorint

Properties

Gets the effective frame rate by dividing the FrameRate by the FrameRateDenominator.

C#
public int EffectiveFrameRate { get; }

Gets the effective maximum frame rate by dividing the FrameRateMax by the FrameRateDenominatorMax.

C#
public int EffectiveMaxFrameRate { get; }

Gets the effective minimum frame rate by dividing the FrameRateMin by the FrameRateDenominatorMin.

C#
public int EffectiveMinFrameRate { get; }

Gets the frame rate of this video format.

C#
public int FrameRate { get; set; }

Gets the frame rate denominator of this video format.

C#
public int FrameRateDenominator { get; set; }

Gets the maximum frame rate of this video format.

C#
public int FrameRateMax { get; set; }

Gets the maximum frame rate denominator of this video format.

C#
public int FrameRateMaxDenominator { get; set; }

Gets the minimum frame rate of this video format.

C#
public int FrameRateMin { get; set; }

Gets the minimum frame rate denominator of this video format.

C#
public int FrameRateMinDenominator { get; set; }

Gets the height of the frames of this video format.

C#
public int FrameSizeHeight { get; set; }

Gets the width of the frames of this video format.

C#
public int FrameSizeWidth { get; set; }

Gets or sets the major type of this video format.

C#
public Guid MajorType { get; set; }

Gets or sets the sub type of this video format.

C#
public Guid SubType { get; set; }

Gets the display name of the media sub type of this video format.

C#
public string SubTypeDisplayName { get; }