IMFStreamingSinkConfig::StartStreaming method (mfidl.h)

Called by the streaming media client before the Media Session starts streaming to specify the byte offset or the time offset.

Syntax

HRESULT StartStreaming(
  [in] BOOL  fSeekOffsetIsByteOffset,
  [in] QWORD qwSeekOffset
);

Parameters

[in] fSeekOffsetIsByteOffset

A Boolean value that specifies whether qwSeekOffset gives a byte offset of a time offset.

Value Meaning
TRUE
The qwSeekOffset parameter specifies a byte offset.
FALSE
The qwSeekOffset parameter specifies the time position in 100-nanosecond units.

[in] qwSeekOffset

A byte offset or a time offset, depending on the value passed in fSeekOffsetIsByteOffset. Time offsets are specified in 100-nanosecond units.

Return value

If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps | UWP apps]
Minimum supported server Windows Server 2008 R2 [desktop apps | UWP apps]
Target Platform Windows
Header mfidl.h

See also

IMFStreamingSinkConfig