Microsoft DirectX 9.0 |
The GetCapabilities method retrieves all the seeking capabilities of the stream.
Syntax
HRESULT GetCapabilities(
DWORD *pCapabilities
);
Parameters
pCapabilities
[out] Pointer to a variable that receives a bitwise combination of AM_SEEKING_SEEKING_CAPABILITIES flags.
Return Value
Returns an HRESULT value. Possible values include the following.
Value | Description |
S_OK | Success. |
E_POINTER | NULL pointer argument. |
Remarks
This method returns information on all the seeking capabilities of the stream. Examine pCapabilities by performing a separate bitwise-AND operation on each AM_SEEKING_SEEKING_CAPABILITIES value you are interested in.
DWORD dwCaps = 0;
pMediaSeeking->GetCapabilities(&dwCaps);
if (dwCaps & AM_SEEKING_CanGetCurrentPos)
{
// The stream can seek to the current position.
}
if (dwCaps & AM_SEEKING_CanPlayBackwards)
{
// The stream can play backward.
}
See Also