Microsoft DirectX 9.0 |
The Stop method stops the filter.
Syntax
HRESULT Stop(void);
Return Value
Returns an HRESULT value. Possible values include those shown in the following table.
Value | Description |
S_FALSE | Transition is not complete. |
S_OK | Success. Transition is complete. |
Remarks
When a filter is stopped, it does not process or deliver any samples, and it rejects samples from upstream filters.
The state transition might be asynchronous. If the method returns before the transition completes, the return value is S_FALSE.
This method always sets the filter's state to State_Stopped, even if the method returns an error code.
See Also