Hi all, I am newbie to directx sdk. I didn't how to load the directshow filters using it's GUID presented. Anybody know my query? Please help me.... thanks in advance.....
On Thu, 15 May 2008 03:42:53 -0700 (PDT), science wrote: > I am newbie to directx sdk. I didn't how to load the directshow > filters using it's GUID presented. Did you look at the samples? There are plenty of examples (dshow is now in the Windows SDK). Anyway, it is better to use smart COM pointers: CComPtr<IBaseFilter> filter; HRESULT hr = filter.CoCreateInstance(CLSID_FilterGraph); // replace with the CLSID of the filter you are trying to create Dshow is no longer part of the DirectX SDK. Please post general dshow questions in: microsoft.public.win32.programmer.directx.video Read the link below for more tips, resources and FAQs. -- Please read this before replying: 1. Dshow & posting help: http://tmhare.mvps.org/help.htm 2. Trim & respond inline (please don't top post or snip everything) 3. Benefit others: follow up if you are helped or you found a solution