1 /* DirectShow Editing Services (qedit.dll)
3 * Copyright 2008 Google (Lei Zhang)
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "qedit_private.h"
21 #include "wine/debug.h"
23 WINE_DEFAULT_DEBUG_CHANNEL(qedit);
25 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
28 case DLL_PROCESS_ATTACH:
29 DisableThreadLibraryCalls(hInstDLL);
31 case DLL_PROCESS_DETACH:
37 /******************************************************************************
38 * DirectShow ClassFactory
41 IClassFactory ITF_IClassFactory;
44 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
47 struct object_creation_info
50 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
53 static const struct object_creation_info object_creation[] =
55 { &CLSID_MediaDet, MediaDet_create },
56 { &CLSID_SampleGrabber, SampleGrabber_create },
60 DSCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj)
62 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
64 if (IsEqualGUID(riid, &IID_IUnknown)
65 || IsEqualGUID(riid, &IID_IClassFactory))
67 IClassFactory_AddRef(iface);
73 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
77 static ULONG WINAPI DSCF_AddRef(LPCLASSFACTORY iface)
79 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
80 return InterlockedIncrement(&This->ref);
83 static ULONG WINAPI DSCF_Release(LPCLASSFACTORY iface)
85 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
87 ULONG ref = InterlockedDecrement(&This->ref);
95 static HRESULT WINAPI DSCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
97 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
101 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
104 hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
105 if (SUCCEEDED(hres)) {
106 hres = IUnknown_QueryInterface(punk, riid, ppobj);
107 IUnknown_Release(punk);
112 static HRESULT WINAPI DSCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
114 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
115 FIXME("(%p)->(%d),stub!\n",This,dolock);
119 static const IClassFactoryVtbl DSCF_Vtbl =
129 /***********************************************************************
130 * DllCanUnloadNow (QEDIT.@)
132 HRESULT WINAPI DllCanUnloadNow(void)
137 /*******************************************************************************
138 * DllGetClassObject [QEDIT.@]
139 * Retrieves class object from a DLL object
142 * rclsid [I] CLSID for the class object
143 * riid [I] Reference to identifier of interface for class object
144 * ppv [O] Address of variable to receive interface pointer for riid
148 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
149 * E_UNEXPECTED, E_NOINTERFACE
152 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
155 IClassFactoryImpl *factory;
157 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
159 if ( !IsEqualGUID( &IID_IClassFactory, riid )
160 && ! IsEqualGUID( &IID_IUnknown, riid) )
161 return E_NOINTERFACE;
163 for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
165 if (IsEqualGUID(object_creation[i].clsid, rclsid))
169 if (i == sizeof(object_creation)/sizeof(object_creation[0]))
171 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
172 return CLASS_E_CLASSNOTAVAILABLE;
175 factory = CoTaskMemAlloc(sizeof(*factory));
176 if (factory == NULL) return E_OUTOFMEMORY;
178 factory->ITF_IClassFactory.lpVtbl = &DSCF_Vtbl;
181 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
183 *ppv = &(factory->ITF_IClassFactory);