CBaseStreamControl.NotifyFilterState 方法
[与此页面关联的功能 DirectShow 是一项旧功能。 它已被 MediaPlayer、 IMFMediaEngine 和 媒体基金会中的音频/视频捕获取代。 这些功能已针对Windows 10和Windows 11进行了优化。 Microsoft 强烈建议新代码尽可能使用 MediaPlayer、 IMFMediaEngine 和 Media Foundation 中的音频/视频捕获 ,而不是 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();
}
要求
要求 | 值 |
---|---|
标头 |
|
库 |
|