MediaExtensionManager.RegisterVideoDecoder Method

Definition

Overloads

RegisterVideoDecoder(String, Guid, Guid)

Registers an video decoder for the specified input and output media types.

RegisterVideoDecoder(String, Guid, Guid, IPropertySet)

Registers a video decoder for the specified input and output media types with an optional configuration parameter.

RegisterVideoDecoder(String, Guid, Guid)

Registers an video decoder for the specified input and output media types.

public:
 virtual void RegisterVideoDecoder(Platform::String ^ activatableClassId, Platform::Guid inputSubtype, Platform::Guid outputSubtype) = RegisterVideoDecoder;
/// [Windows.Foundation.Metadata.Overload("RegisterVideoDecoder")]
void RegisterVideoDecoder(winrt::hstring const& activatableClassId, winrt::guid const& inputSubtype, winrt::guid const& outputSubtype);
[Windows.Foundation.Metadata.Overload("RegisterVideoDecoder")]
public void RegisterVideoDecoder(string activatableClassId, Guid inputSubtype, Guid outputSubtype);
function registerVideoDecoder(activatableClassId, inputSubtype, outputSubtype)
Public Sub RegisterVideoDecoder (activatableClassId As String, inputSubtype As Guid, outputSubtype As Guid)

Parameters

activatableClassId
String

Platform::String

winrt::hstring

The class identifier of the activatable runtime class of the video decoder. The runtime class must implement the IMediaExtension interface.

inputSubtype
Guid

Platform::Guid

winrt::guid

The guid identifier of the media type that the video decoder accepts as input.

outputSubtype
Guid

Platform::Guid

winrt::guid

The guid identifier of the media type that is output by the video decoder.

Attributes

See also

Applies to

RegisterVideoDecoder(String, Guid, Guid, IPropertySet)

Registers a video decoder for the specified input and output media types with an optional configuration parameter.

public:
 virtual void RegisterVideoDecoder(Platform::String ^ activatableClassId, Platform::Guid inputSubtype, Platform::Guid outputSubtype, IPropertySet ^ configuration) = RegisterVideoDecoder;
/// [Windows.Foundation.Metadata.Overload("RegisterVideoDecoderWithSettings")]
void RegisterVideoDecoder(winrt::hstring const& activatableClassId, winrt::guid const& inputSubtype, winrt::guid const& outputSubtype, IPropertySet const& configuration);
[Windows.Foundation.Metadata.Overload("RegisterVideoDecoderWithSettings")]
public void RegisterVideoDecoder(string activatableClassId, Guid inputSubtype, Guid outputSubtype, IPropertySet configuration);
function registerVideoDecoder(activatableClassId, inputSubtype, outputSubtype, configuration)
Public Sub RegisterVideoDecoder (activatableClassId As String, inputSubtype As Guid, outputSubtype As Guid, configuration As IPropertySet)

Parameters

activatableClassId
String

Platform::String

winrt::hstring

The class identifier of the activatable runtime class of the video decoder. The runtime class must implement the IMediaExtension interface.

inputSubtype
Guid

Platform::Guid

winrt::guid

The guid identifier of the media type that the video decoder accepts as input.

outputSubtype
Guid

Platform::Guid

winrt::guid

The guid identifier of the media type that is output by the video decoder.

configuration
IPropertySet

An optional parameter that contains the configuration properties to be passed to the video decoder.

Attributes

See also

Applies to