IMFCaptureSink::GetOutputMediaType method (mfcaptureengine.h)

Gets the output format for a stream on this capture sink.

Syntax

HRESULT GetOutputMediaType(
  [in]  DWORD        dwSinkStreamIndex,
  [out] IMFMediaType **ppMediaType
);

Parameters

[in] dwSinkStreamIndex

The zero-based index of the stream to query. The index is returned in the pdwSinkStreamIndex parameter of the IMFCaptureSink::AddStream method.

[out] ppMediaType

Receives a pointer to the IMFMediaType interface. The caller must release the pointer.

Return value

This method can return one of these values.

Return code Description
S_OK
Success.
MF_E_INVALIDSTREAMNUMBER
The dwSinkStreamIndex parameter is invalid.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Target Platform Windows
Header mfcaptureengine.h

See also

IMFCaptureSink