문제

I wanna write a "DriectShow Source Filter" for using webcam.

But I would know is the any way not using "Windows SDK"?

도움이 되었습니까?

해결책

Yes, it is possible to create a DirectShow filter without using Windows SDK base classes. A filter is nothing but a COM class implementing a set of COM interfaces, some of which are mandatory (IBaseFilter, IPin) and other are optional. SDK BaseClasses are helpers to give a quick start but if you want to do it from fresh - it's absolutely possible.

다른 팁

Really, you are do not need to write DirectShow source filter to use webcam... Only IBaseFilter is required.

Windows SDK can help you to enumerate devices, webcam output video formats and so on, that's mean that for a real development Baseclasses is required (you can copy Baseclasses from Windows SDK).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top