IMediaSeeking::GetCurrentPosition (Windows CE 5.0)

Send Feedback

This method retrieves the current position in terms of the total length of the media stream.

HRESULT GetCurrentPosition(LONGLONG*pCurrent);

Parameters

  • pCurrent
    [out] Current position in current time format units.

Return Values

Returns an HRESULT value that depends on the implementation of the interface.

The default DirectShow implementation returns E_POINTER if the pointer argument is NULL, or another COM return code otherwise.

Remarks

The current position is the position that playback has reached. It is a value between zero and the duration. If the filter graph is paused, this is the position at which it will restart.

Because IMediaSeeking uses media times for its time parameters, the current position value is independent of any rate or start position that might have been set.

When the filter graph is stopped or paused, this method returns the position at which playback will recommence.

When the filter graph is running, the filter graph manager returns the position according to the data arriving at the renderer.

If an individual filter implements this method, it should return the media time of the sample it is processing when paused or running.

After stopping or pausing, a run command causes playback to begin at the current position. This will be where playback stopped or paused, unless there has been an IMediaSeeking::SetPositions call in the meantime to reset the start position.

Requirements

DirectShow applications and DirectShow filters have different include file and link library requirements.

For more information, see Setting Up the Build Environment.

Pocket PC: Windows Mobile 5.0 and later
Smartphone: Windows Mobile 5.0 and later
OS Versions: Windows CE 2.12 and later. Version 2.12 requires DXPAK 1.0 or later.

See Also

IMediaSeeking Interface

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.