Microsoft DirectX 9.0

CBasePin::Inactive

The Inactive method notifies the pin that the filter is no longer active.

Syntax

virtual HRESULT Inactive(void);

Return Value

Returns S_OK.

Remarks

When the filter stops, the CBaseFilter class calls this method on all of the filter's connected pins.

This method does nothing in the base class. Derived classes should override this method to free any resources obtained by the CBasePin::Active method; for example, to decommit the pin's allocators.

The filter graph manager's internal state is not updated until after this method returns, so do not test the state from this method.

See Also