다음을 통해 공유


CBaseStreamControl.NotifyFilterState 메서드

[이 페이지와 연결된 기능인 DirectShow는 레거시 기능입니다. MediaPlayer, IMFMediaEngine 및 Media Foundation의 오디오/비디오 캡처로 대체되었습니다. 이러한 기능은 Windows 10 및 Windows 11 최적화되었습니다. 가능한 경우 새 코드가 DirectShow 대신 Media Foundation에서 MediaPlayer, IMFMediaEngine오디오/비디오 캡처를 사용하는 것이 좋습니다. 가능한 경우 레거시 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 클래스