共用方式為


CBaseStreamControl.NotifyFilterState 方法

[與此頁面相關的功能 DirectShow是舊版功能。 它已被 MediaPlayerIMFMediaEngineMedia Foundation 中的音訊/視訊擷取取代。 這些功能已針對Windows 10和Windows 11進行優化。 Microsoft 強烈建議新程式碼盡可能使用 MediaPlayerIMFMediaEngine音訊/視訊擷取 ,而不是 DirectShow。 Microsoft 建議使用舊版 API 的現有程式碼盡可能重寫為使用新的 API。

方法 NotifyFilterState 會在篩選準則的狀態變更時通知針腳。

語法

void NotifyFilterState(
   FILTER_STATE   new_state,
   REFERENCE_TIME tStart = 0
);

參數

new_state

指定新狀態,做為 FILTER_STATE 列舉的成員。

tStart

指定開始時間。 如果新的篩選狀態State_Running,請從 IMediaFilter::Run 方法傳入值。 否則,請使用預設值。

傳回值

這個方法不會傳回值。

備註

這個方法會導致 CBaseStreamControl::CheckStreamState 方法停止等候。 每當擁有篩選準則變更狀態時,請呼叫這個方法。

範例

STDMETHODIMP CMyFilter::Run(REFERENCE_TIME tStart)
{
   /* Do other things needed by the filter ... */
   m_pMyPin->NotifyFilterState(State_Running, tStart);
   return CBaseFilter::Run(tStart); // Call the filter base class.
}

STDMETHODIMP CMyFilter::Pause()
{
   /* Do other things needed by the filter ... */
   m_pMyPin->NotifyFilterState(State_Paused);
   return CBaseFilter::Pause();
}

STDMETHODIMP CMyFilter::Stop()
{
   /* Do other things needed by the filter ... */
   m_pMyPin->NotifyFilterState(State_Stopped);
   return CBaseFilter::Stop();
}

規格需求

需求
標頭
Strmctl.h (包含 Streams.h)
程式庫
Strmbase.lib (零售組建) ;
Strmbasd.lib (偵錯組建)

另請參閱

CBaseStreamControl 類別