IMFCaptureEngine::GetSink method (mfcaptureengine.h)

Gets a pointer to one of the capture sink objects. You can use the capture sinks to configure preview, recording, or still-image capture.

Syntax

HRESULT GetSink(
  [in]  MF_CAPTURE_ENGINE_SINK_TYPE mfCaptureEngineSinkType,
  [out] IMFCaptureSink              **ppSink
);

Parameters

[in] mfCaptureEngineSinkType

An MF_CAPTURE_ENGINE_SINK_TYPE value that specifies the capture sink to retrieve.

[out] ppSink

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

Return value

This method can return one of these values.

Return code Description
S_OK
Success.
E_INVALIDARG
Invalid argument.

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

IMFCaptureEngine