Microsoft DirectX 8.1 (C++)

IMediaSeeking::GetPositions

The GetPositions method retrieves the current position and the stop position, relative to the total duration of the stream.

Syntax

HRESULT GetPositions(
  LONGLONG *pCurrent,
  LONGLONG *pStop
);

Parameters

pCurrent

[out] Pointer to a variable that receives the current position, in units of the current time format.

pStop

[out] Pointer to a variable that receives the stop position, in units of the current time format.

Return Value

Returns an HRESULT value. Possible values include the following.

Value Description
S_OK Success.
E_NOTIMPL Method is not supported.
E_POINTER NULL pointer argument.

Remarks

The current position and the stop position are both relative to the original stream, and are independent of the playback rate.

The returned values are expressed in units of the current time format. To determine the current time format, call the IMediaSeeking::GetTimeFormat method.

See Also