CDynamicOutputPin::DynamicReconnect
Microsoft DirectShow 9.0 |
CDynamicOutputPin::DynamicReconnect
The DynamicReconnect method performs a dynamic reconnection with a new media type. The reconnection can occur while the filter graph is running.
Syntax
HRESULT DynamicReconnect( const CMediaType *pmt );
Parameters
pmt
Pointer to an AM_MEDIA_TYPE structure that specifies the media type.
Return Value
Returns an HRESULT value. Possible values include those shown in the following table.
Value | Description |
S_OK | Success. |
E_FAIL | Failure. Possibly the owning filter did not call the CDynamicOutputPin::SetConfigInfo method. |
Remarks
This method must be called from the same thread that delivers data to the pin. Once this method is called, samples with the old media type cannot be delivered. The caller must ensure that no old samples are pending.
Call CDynamicOutputPin::StartUsingOutputPin before calling this method.
Requirements
** Header:** Declared in Amfilter.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also