IMediaRenderer::SetNextSourceFromStreamAsync method
Instructs the DMR asynchronously to prepare the specified media stream for playing once the current content has finished playing.
HRESULT SetNextSourceFromStreamAsync(
[in] IInspectable *stream,
[out] PlaybackOperation **value
);
stream [in]
A reference to an IInspectable interface implementing IMFActivate. The IMFActivate interface is used to query for an IMFByteStream interface that represents the media stream.value [out]
Receives a reference to a PlaybackOperation object that is used to get results from the asynchronous operation.
The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.
Return code | Description |
---|---|
S_OK | The method succeeded. |
Once the DMR finishes playing the current content, it will automatically switch to the content specified by the stream parameter.