Windows Mobile / DirectShow / SampleGrabber
Computing 2010. 2. 4. 14:44
code project의 SampleGrabber 사용
http://www.codeproject.com/KB/mobile/samplegrabberfilter-wm6.aspx
VS2005에서 빌드할때 문제발생
method undefined
- CSampleGrabber::FindPin
- CSampleGrabber::JoinFilterGraph
- CSampleGrabber::QueryVendorInfo
- CSampleGrabber::NonDelegatingRelease
위 목록중에서 3개는 아래 방법으로 해결
- Under Project Propeties/C++/Language change the compiler option "Treat wchar_t as builtin type" to No and rebuild
마지막 1개는 아래 방법으로 해결
- #ifdef DEBUG
#define UNDEFINEDEBUGTEMPORARILY
#undef DEBUG
#endif
#include <streams.h>
#ifdef UNDEFINEDEBUGTEMPORARILY
#define DEBUG
#endif - streams.h안에 NonDelegatingRelease는 DEBUG에서만 정의되도록 되어있어서, CBaseFilter를 implement하는 모든 class들은 이를 DEBUG에서는 구현해야하나 보통 구현하지않게되므로, streams.h를 include할때 그냥 DEBUG를 undef해버림
- codeproject의 소스는 그 외에도 precompiled header에서 streams.h를 include하고 있으므로 이또한 처리를 해주어야 한다.
'Computing' 카테고리의 다른 글
android omnia porting current status (0) | 2010.02.04 |
---|---|
android kernel build for samsung omnia (0) | 2010.02.04 |
omnia에 android 설치 (0) | 2010.01.15 |
pda rom dump (0) | 2010.01.15 |
ubuntu 9.10 desktop을 microsoft virtual pc 2007에 설치하기 (0) | 2010.01.15 |