Runtime시 아래와 같은 메시리를 뿜으며 대화상자가 뜬다.
"IQualityControl::Notify not over-ridden from CBasePin. (IGNORE is OK)"
At line 2346 of C:\DXSDK\Samples\C++\DirectShow\BaseClasses\amfilter.cpp
Continue? (Cancel to debug)
해결방법 :
이 에러 메시는 런타임시 필터 그래프에서 출력이 된다.
그래서 위 에러를 위해 CBasePin을 상속 받은 Class에서
아래와 같이 코드를 추가 하였다.
STDMETHODIMP Notify(IBaseFilter *pSelf,Quality q ) { return S_OK; }
음 잘 동작한다....