IMFQualityManager::NotifyProcessOutput method (mfidl.h)

Called after the media processor gets an output sample from a pipeline component.

Syntax

HRESULT NotifyProcessOutput(
  [in] IMFTopologyNode *pNode,
  [in] long            lOutputIndex,
  [in] IMFSample       *pSample
);

Parameters

[in] pNode

Pointer to the IMFTopologyNode interface of the topology node that represents the pipeline component.

[in] lOutputIndex

Index of the output stream on the topology node.

[in] pSample

Pointer to the IMFSample interface of the output sample.

Return value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK
The method succeeded.

Remarks

This method is called for every sample passing through every pipeline component. Therefore, the method must return quickly to avoid introducing too much latency into the pipeline.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header mfidl.h
Library Mfuuid.lib

See also

IMFQualityManager