IStreamSample::CompletionStatus method (mmstream.h)
[The feature associated with this page, DirectShow, is a legacy feature. It has been superseded by MediaPlayer, IMFMediaEngine, and Audio/Video Capture in Media Foundation. Those features have been optimized for Windows 10 and Windows 11. Microsoft strongly recommends that new code use MediaPlayer, IMFMediaEngine and Audio/Video Capture in Media Foundation instead of DirectShow, when possible. Microsoft suggests that existing code that uses the legacy APIs be rewritten to use the new APIs if possible.]
Syntax
HRESULT CompletionStatus(
[in] DWORD dwFlags,
[in] DWORD dwMilliseconds
);
Parameters
[in] dwFlags
Value that specifies whether to forcibly complete the update. This value is a combination of one or more of the following flags.
Value | Description |
---|---|
COMPSTAT_NOUPDATEOK (0x01) | Force the update to complete as soon as possible, even if the sample update isn't yet complete. If the sample is updating and you didn't set the COMPSTAT_WAIT flag, the method returns MS_S_PENDING. If the sample is waiting to be updated, this method removes it from the queue and returns MS_S_NOTUPDATED. |
COMPSTAT_WAIT (0x02) | Wait until the sample finishes updating before returning from this method. |
COMPSTAT_ABORT (0x04) | Forces the update to complete, even if it's currently updating. This leaves the sample data in an undefined state. Combine this value with the COMPSTAT_WAITFORCOMPLETION flag to ensure that the update canceled. |
[in] dwMilliseconds
If the dwFlags parameter is COMPSTAT_WAIT, this value is the number of milliseconds to wait for the update to complete. Specify INFINITE to indicate that you want to wait until the sample updates before this call returns.
Return value
Returns one of the following values.
Return code | Description |
---|---|
|
The update aborted. |
|
The sample wasn't updated because it reached the end of the stream. |
|
The update was forcibly completed; the sample was not updated by the stream. |
|
An asynchronous update is pending. |
|
Success. |
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | mmstream.h |